gpt4 book ai didi

c# - .First 不会在空集合上抛出异常

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

我正在运行一个应该抛出异常的 linq 查询(根据我的理解),但它没有。数据库中没有符合查询参数的项。

下面不抛出异常,只是简单的返回null:

from i in Items
where i.ItemID == 25
select i.Values.First(v => v.AttribID == 69)

下面确实按预期抛出异常:

(from i in Values
where i.ItemID == 25
where i.AttribID == 69
select i).First()

通过测试几种不同形式的查询,我能发现的唯一区别是 .First 似乎在 .做。请帮助我理解原因。

澄清...

from i in Items
where i.ItemID == 25
select i

...返回 1 个项目。

测试这些查询时,请参阅下面的 linqPad 结果:

enter image description here

enter image description here

enter image description here

最佳答案

第一个查询说:

Filter Items to only include those with ItemId == 25 and from each filtered result i, select the first item v inside i.Values such that v.AttribID == 69.

这里 First 如果例如Items 为空,因为“从每个过滤结果 i”将处理零个项目,因此永远不会调用 First

第二个查询说:

Filter Values to only include those with ItemId == 25 and AttribId == 69 and give me the first matching item.

很明显,在这种情况下,如果不存在匹配项,First 无法为您提供有意义的结果,并且会抛出异常。

关于c# - .First 不会在空集合上抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24678267/

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