在mongodb中比较日期“没有时间”c#

时间:2018-06-02 08:01:23

标签: c# mongodb

我正在尝试使用下面的

使用mongodb和c#比较“没有时间”的日期
public async Task<List<Res>> GetRes(DateTime date1, DateTime date2)
        {

            return await collection.Find(d => 
                d.Created.Date >= date1.Date && d.CreatedAt.Date <= date2.Date).ToListAsync();
        } 

public class Res
    {
        [BsonId] public ObjectId Id { get; set; }
        [BsonDateTimeOptions(Kind = DateTimeKind.Utc)] public DateTime Created { get; set; }
}

当我试图运行上面的代码时,我的错误

{document}{CreatedAt}.Date is not supported.

有关于此的任何想法吗?

提前致谢

0 个答案:

没有答案