gpt4 book ai didi

entity-framework - 在EntityFramework查询中不为null

转载 作者:行者123 更新时间:2023-12-04 08:28:19 26 4
gpt4 key购买 nike

首先是Entity Framework 4.0代码,然后是C#4.0。
代码中不为空的问题是什么?

var query = from c in dbContext.table 
where c.FacilityID == facilityID && c.FilePath is Not null select c;

编辑:

添加后的许多错误不为null。

其中之一是:

The type or namespace name 'Not' could not be found (are you missing a using directive or an assembly reference?)

最佳答案

Not不是LINQ查询中的关键字,因此您会得到编译器错误。您需要使用不等式运算符(!=)检查FilePath是否不为null。

下面的代码应该为您工作

var query = from c in dbContext.table 
where c.FacilityID == facilityID && c.FilePath != null select c;

关于entity-framework - 在EntityFramework查询中不为null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14591829/

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