.Where(x => x.POD_DATE == xDATEx)
I need to check if xDATEx is the same date as x.POD_DATE
but xDATEx gives me results like 2011-07-17 00:00:00.000
and the x.POD_DATE gives 2011-07-17 01:15:43.577
How do I compare them, despite the results not being in a date only format?