I\'m trying to run the following bit of code, but the comparison fails by not handing my the entities I expect it to.
It\'s comparing 06/09/2011 0:00:00
You can use the individual members:
var newAuctionsResults = repo.FindAllAuctions()
.Where(a => a.IsActive == true
|| (a.StartTime.Value.Year == todayYear
&& a.StartTime.Value.Month == todayMonth
&& a.StartTime.Value.Day == todayDay))
.ToList();
...or use any of the other methods/properties supported in L2E.