How to apply Equal to filter on datetime
Equal To filter not working for datetime column,how to filter with only date in intersoft grid,All operators are working except Equal to
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Madhanmohan DevarajanPosted Oct 6, 2016, 10:06 AM
using System;{{DateTime date1 = new DateTime(2015, 8, 1, 0, 0, 0);DateTime date2 = new DateTime(2015, 8, 1, 12, 0, 0);int result = DateTime.Compare(date1, date2);string diff;if (result < 0)else