gpt4 book ai didi

c# - Linq 选择主列表的子集

转载 作者:太空狗 更新时间:2023-10-29 20:47:41 25 4
gpt4 key购买 nike

我有一个复杂对象的主列表。

我有一个 int id 列表,我需要从主列表中选择相应的复杂对象。

这行不通

MasterListofComplexObj.Where(u => MasterListofComplexObj.Select(i => i.Id).Contains(ChildListofIntIds));

如有任何帮助,我们将不胜感激。

最佳答案

这应该有效:

var results = MasterListofComplexObj.Where(u => ChildListofIntIds.Contains(u.Id));

关于c# - Linq 选择主列表的子集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9069254/

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