Linq 表达式返回 null 而不是空集
我发现这个奇怪的问题。当我这样做时>
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您可能会因使用逻辑
And
而被咬。您的意思可能是AndAlso
来简化您的逻辑表达式:通过使用
AndAlso
,仅当第一部分为 true 时才会计算第二部分。It looks like you might be getting bitten by using the logical
And
. You probably meantAndAlso
to short-circuit your logical expression:By using
AndAlso
the second part will only be evaluated if the first part is true.