LLBLGEN 3.0
.net Framework 2.0
Oracle 9i/10g
Dear Support team,
I am trying filter date with following code.
var filterEventdate = new FieldCompareValuePredicate(EventFields.Eventdate, null,
ComparisonOperator.Equal,
eventdate);
But I want to ignore time and check if record exists with date.
Ex: I have a record 23/10/2010 11:45:13 AM, if i execute the above filter on 23/10/2010 11:45:15 no record is fetched because of time. So I want filter only by date ignoring time. How do i do this ?