Is is possible to do this in SQL in Linq to SQL?
Select field from table where date between '2010-01-01' and '2010-01-31';
I realize I could do:
where (monthBeginDate < a.StopDateActual && a.StopDateActual < monthEndDate)
But I was curious if I could do the former. I have a bad habit of screwing up the less than and greater than on statements like that.