gpt4 book ai didi

c# - 比较 LINQ 中的日期部分

转载 作者:行者123 更新时间:2023-11-30 15:42:14 25 4
gpt4 key购买 nike

在 LINQ to SQL 中,如何只比较 sql 日期时间列和 .net 日期时间对象的日期部分?

最佳答案

尝试使用两者的 Date 属性:

Date today = DateTime.Today; // Effectively DateTime.Now.Date

var dataFromToday = from record in context.Records
where record.TimeStamp.Date == today
select record;

相信这适用于 LINQ to SQL...正如 tvanfosson 所说,它不适用于 EF。

关于c# - 比较 LINQ 中的日期部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7693245/

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