Linq 表达式返回 null 而不是空集

发布于 2024-10-03 05:26:43 字数 274 浏览 0 评论 0原文

我发现这个奇怪的问题。当我这样做时>

activities.Where(Function(a) (Not a.IsDeleted And a.ParentId = 100)

它返回内存中的查询&当我尝试打开它时,它会抛出一个对象未​​设置异常。仅当没有满足条件的项目时才会发生这种情况。它不应该返回一个空集吗?

当有项满足条件时,它会返回一个列表&一切都很好。

有什么想法吗?

I am finding this weird issue. When I do this >

activities.Where(Function(a) (Not a.IsDeleted And a.ParentId = 100)

It returns an in-memory query & when I try opening it up, it throws a object not set exception. This only happens when there were no items which satisfied the condition. Shouldn't it be returning an empty set?

When there are items satisfying the condition, then it returns a list & works all good.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山人契 2024-10-10 05:26:43

看起来您可能会因使用逻辑 And 而被咬。您的意思可能是 AndAlso 来简化您的逻辑表达式:

Not a.IsDeleted AndAlso a.ParentId = 100

通过使用 AndAlso,仅当第一部分为 true 时才会计算第二部分。

It looks like you might be getting bitten by using the logical And. You probably meant AndAlso to short-circuit your logical expression:

Not a.IsDeleted AndAlso a.ParentId = 100

By using AndAlso the second part will only be evaluated if the first part is true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文