gpt4 book ai didi

c# - Linq查询帮助

转载 作者:行者123 更新时间:2023-11-30 21:22:54 26 4
gpt4 key购买 nike

我有两个集合,需要从这两个集合创建一个新集合。

假设有以下类:

public class Widget
{
property int Id{get;set;}
property string Label{get;set;}
}

我们有两个 IList 类。我想创建一个带有 Id、Label 和 Exists 的匿名类型

所以对 Id 和 Label 这样做,我有:

var newCol=from w in widgets
select new {Id=w.Id,Label=w.Label,Exists=????}

在 Linq 中有没有一种方法我可以确定存在而无需自己在这里编写循环代码?

编辑

Exists 告诉我们 Widget 是否在第二个列表中。因此,例如我刚刚想到的一个解决方案是:

var newCol=from w in widgets
select new {Id=w.Id,Label=w.Label,Exists=myWidgets.Contains(w)}

我的小部件是第二个 IList。

最佳答案

你的问题真的很模糊,但我猜这就是你想要的:

var newCol = from w in widgets
select new { Id = w.Id, Label = w.Label,
Exists = others.Contains(o => o.Id == w.Id }

关于c# - Linq查询帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2074482/

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