gpt4 book ai didi

c# - 如何在 LINQ 中比较日期(Likewise Like 在 SQL 查询中)

转载 作者:太空宇宙 更新时间:2023-11-03 23:14:14 24 4
gpt4 key购买 nike

有没有办法只从 DateTime.Now 获取 Date 并且它也是 DateTime 类型。因为在我的数据库中我具有 CreatedDate 类型的属性 DateTime

var cmd = _ut.GetRepoInstance<Feedback>().GetAllRecords().Where(x => x.IsStatus == true & x.CreatedDate== DateTime.Now).Count();

有人可以建议 Linq 查询,它只会比较 C# 中的 DateTime.Now 和 Sql 中的 DateTime 类型之间的日期部分

最佳答案

试试这个:

var cmd = _ut.GetRepoInstance<Feedback>().GetAllRecords().Where(x => x.IsStatus == true & x.CreatedDate.Date == DateTime.Now.Date).Count();

关于c# - 如何在 LINQ 中比较日期(Likewise Like 在 SQL 查询中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37827143/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com