I have an issue where I need to return users based on a custom field. I have created these custom fields with an excellent plugin called “Advanced Custom Field” (ACF). ACF plugin allows you to show custom fields in...
Archive - May 2022
Lists are very useful object types in C#. A lot of times we come across requirements to sort list items. By default, we can only sort by Ascending or descending list items using Linq or Lamda but there is no default sorting order...
A lot of times we come across issues comparing dates in SQL. There are a few scenarios below Compare dates in the DateTime Column Select * from EMP WHERE datetime_column >= '20221220 00:00:00.000' AND datetime_column...