Andreas Gullberg Larsen
Results
322
comments of
Andreas Gullberg Larsen
Let's give the PR author a little time to chime in, but I think renaming these is the way to go and we have an opportunity in v6 that is...
This workaround works for me on EF Core 2.2.6: ```c# public static IQueryable FilterOnDayOfWeek( IQueryable query, params DayOfWeek[] daysOfWeek) { int[] dayOfWeekValues = daysOfWeek.Select(wd => (int) wd).ToArray(); DateTime firstSunday =...