How to compare only Date without Time in DateTime types in Linq to SQL with Entity Framework? September 23, 2022 by Tarik try using the Date property on the DateTime Object… if(dtOne.Date == dtTwo.Date) ....