gpt4 book ai didi

c# - 为什么在 linq 中应用 != 时不返回空值

转载 作者:行者123 更新时间:2023-11-30 18:54:50 28 4
gpt4 key购买 nike

我用这个代码

var items2 = from item in context.Images
where item.Reported != true
select item;

但为什么“报告”列中不返回空值?

最佳答案

truefalsenull 的值不同。如果您需要返回两者,那么您需要将查询更改为:

var items2 = from item in context.Images
where item.Reported != true || item.Reported == null
select item;

关于c# - 为什么在 linq 中应用 != 时不返回空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16572570/

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