gpt4 book ai didi

c# - 使用对象属性的 linq 获取 distinct 或 groupby 列表

转载 作者:行者123 更新时间:2023-11-30 19:20:16 25 4
gpt4 key购买 nike

我有

List<ObjA>  
ObjA has ObjB
ObjB has property Id

如何根据 Id 获取不同 ObjB 的列表?

谢谢

最佳答案

使用 DistinctBy来自 MoreLinq ,你可以使用这个:

list.Select(a => a.ObjB).DistinctBy(b => b.Id);

关于c# - 使用对象属性的 linq 获取 distinct 或 groupby 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6843445/

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