`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.
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.