我希望获得日期在一定范围内的所有记录。 不幸的是,日期存储为字符串。 我想做这样的事情
from r in collection.AsQueryable()
.where(toDate(r.Date) > toDate(startDate) && toDate(r.Date) < toDate(endDate))
.select r;
其中toDate()是我的方法,它使用ParseExact将字符串转换为DateTime。但是这是不允许的,因为我不能在查询中使用方法。