gpt4 book ai didi

c# - Linq-在嵌套集合中查找元素

转载 作者:行者123 更新时间:2023-12-04 13:24:49 24 4
gpt4 key购买 nike

我有一个通用列表-SupportedTypeGroups。

每个SupportedTypeGroup都有SupportedTypes属性(SupportedType的通用列表)。

如何构造Linq查询以使用所需名称查找SupportedType?

最佳答案

var result = SupportedTypeGroups
.SelectMany(g => g.SupportedTypes)
.FirstOrDefault(t => t.Name == "TypeName");

关于c# - Linq-在嵌套集合中查找元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5051872/

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