I have a Linq query:
people.Where(x => EntityFunctions.DiffHours(x.CreateDate, dtMatch) > 0)
that does only work within Linq 2 Entities.
How do I make this method run without Entities?
What I've tried so far:
people.Where(x => (x.CreateDate - dtMatch).TotalHours > 0)
... seems to give a different result