gpt4 book ai didi

c# - 为什么 LINQ 查询中的 not null 仍然返回空记录?

转载 作者:可可西里 更新时间:2023-11-01 08:03:17 25 4
gpt4 key购买 nike

为什么 LINQ 查询返回空记录?我使用下面的代码无济于事。

var list = (from t in dal.table
where t.name != null);

最佳答案

您忘记了选择

var list = (from t in dal.table
where t.name != null
select t);

关于c# - 为什么 LINQ 查询中的 not null 仍然返回空记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6783604/

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