dashing
dashing copied to clipboard
Can't use DateTime.UtcNow.Date in Where clause
query.Where(s => s.StartDate <= DateTime.UtcNow.Date);
throws a null reference exception where
var today = DateTime.UtcNow.Date; query.Where(s => s.StartDate <= today);
Does not.