Please help. I am trying to figure out how to use DATE or DATETIME for comparison in a linq query.
Example: If I wanted all Employee names for those who started befo
It may be due to the date in the database being nullable. Try this:
var EmployeeName = from e in db.employee where e.StartDateColumn.Value <= startDT