gpt4 book ai didi

C# 将 sql datetime 与 null 进行比较

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

我正在 ASP.NET MVC 4 中创建一些内容,在我的一个表中有一个类型为 datetime 的字段。在更新之前,该字段默认为空。我正在尝试从此表中选择此字段为空的行,但我的 LINQ 查询始终不返回任何内容。这是我的查询。

from m in this._db.MessageReadStates
where m.UserName == name
&& m.ReadDate == null
select m

我是 C# 的新手,有没有正确的方法来检查 null?

最佳答案

您想检查 HasValue Nullable<DateTime> 的属性(property)输入:

&& !m.ReadDate.HasValue

关于C# 将 sql datetime 与 null 进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10388658/

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