gpt4 book ai didi

c# - 是否可以在 LinQ 中的 where 子句中使用条件?

转载 作者:太空狗 更新时间:2023-10-30 00:04:37 24 4
gpt4 key购买 nike

我用这种方式有一个简单的 LinQ 查询:

myList.Where(x=> x.Property.Property2 == 5);

但是,Property 可能为 null,然后我得到一个错误。所以我想知道有没有什么办法可以判断是否为null,如果不为null,则进行比较,如果为null,则抛出异常。

因为如果没有,我必须使用 foreach 来检查每个元素,这样:

List<MyType> myLstResult = new List<MyType>();
foreach(MyType iterator in myList)
{
if(iterator.Property == null)
{
throw new ArgumentNullException();
}
if(iterator.Property.Property2 == 5)
{
myLstresult.Add(iterator);
}
}

谢谢。

最佳答案

是的,你可以像那样扩展 lambda:

myList.Where(x=> 
{
if (x.Property == null)
throw new ArgumentNullException();
return x.Property.Property2 == 5;
});

这当然只适用于“正常”的 linq。 Linq-to-sql 或 -entity 查询提供程序可能无法将其转换为 sql。

关于c# - 是否可以在 LinQ 中的 where 子句中使用条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38198785/

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