I have this query:
var q = from p in DB.treatments
where p.start >= start && p.end <= end
select p;
And in the database the end says 06/14/2012 12:00 a.m. which supposedly includes the whole 14 of june just before it turns 15 of june.
So if i send the end parameter with 06/14/2012 04:00 p.m. it doesn´t return anything, only if it were 06/15/2012 but I want it to search the whole day the 14, not 15.
So i want to search the whole day of the 14, and the datetime returns this 06/14/2012 12:00 a.m. when selecting the 14.
How do I do it?