我想在linq查询中比较日期。我将从日期和todate作为参数在函数中获取并依赖于该条件查询应该获取记录位于这些日期之间。如何做到这一点?
答案 0 :(得分:0)
你应该能够以明显的方式使用它们:
public IQueryable<Record> FindRecords(DateTime fromDate, DateTime toDate)
{
// Adjust accordingly
return context.Records.Where(x => x.FooDate >= fromDate &&
x.FooDate < toDate);
}
如果您在尝试上述简单比较时告诉我们您遇到的问题,我们可能会提供更多帮助。