Jen jsem se s vámi chtěl podělit o to, že jsem našel řešení!
Funkce EntityFunctions nám poskytují TruncateTime(), kterou lze pro tento účel použít.
from e in MyContext.MyTable.Where(a =>
EntityFunctions.TruncateTime(a.DateTimeColumn) ==
EntityFunctions.TruncateTime(DateTime.Now)) select e;
UPRAVIT: Pro EntityFramework 6 a vyšší:
from e in MyContext.MyTable.Where(a =>
DbFunctions.TruncateTime(a.DateTimeColumn) ==
DbFunctions.TruncateTime(DateTime.Now)) select e;
Našel jsem to zde .