When debugging, the incoming values for these 3 DateTime types are:
CreatedDate = 2/3/2012 3:11:34 PM
d1 = 1/1/2012 12:00:00 AM
d2 = 2/3/2012 12:00:00 AM
listings = listings.Where(d=>d.CreatedDate >= d1.Date && d.CreatedDate <= d2.Date);
I have data in the listings var until after this expression; any clues on why they are not shown?
d2.Date is not greater than d.CreatedDate