gpt4 book ai didi

linq-to-sql - LINQ to SQL - where 子句中的可为空类型

转载 作者:行者123 更新时间:2023-12-04 01:35:58 25 4
gpt4 key购买 nike

我有一个包含空值列的表......当我尝试查询该列为空的记录时:

这有效:



var list = from mt in db.MY_TABLE
where mt.PARENT_KEY == null
select new { mt.NAME };


这不会:


int? id = null;
var list = from mt in db.MY_TABLE
where mt.PARENT_KEY == id
select new { mt.NAME };


为什么?

最佳答案

经过更多的谷歌搜索,我找到了答案:

ref #1

ref #2

int? id = null;
var list = from mt in db.MY_TABLE
where object.Equals(mt.PARENT_KEY, id) //use object.Equals for nullable field
select new { mt.NAME };

此 LINQ 按如下方式呈现给 SQL:
((mt.PARENT_KEY IS NULL) AND (@id IS NULL)) 
OR ((mt.PARENT_KEY IS NOT NULL) AND (@id IS NOT NULL) AND (mt.PARENT_KEY = @id))

关于linq-to-sql - LINQ to SQL - where 子句中的可为空类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1126133/

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