从不同集合中删除另一个列表的对象列表

发布于 2024-12-11 06:26:03 字数 280 浏览 0 评论 0原文

我试图更加努力地研究这些结构,但我绝对不认为它们是演绎性的。当我得到 2 个相同类型的列表( List )时,我已经编写了类似上面的代码:

listA.RemoveAll(x => !listB.Any(y => y.ID == x.ID));

现在,假设我有相同的列表,但它们来自不同的集合(列表的每个成员都有不同的属性)并且我想要从列表 A 中删除所有与列表 B 中的元素不具有相同 ID 的成员。

两个集合都有一个要比较的 int ID 属性。

Im trying to work harder with those constructions but definitelly I dont see them deductive. I already made a code like above when I got 2 lists of the same kind ( List ) for example:

listA.RemoveAll(x => !listB.Any(y => y.ID == x.ID));

Now, supouss that I have the same lists but they are from different collections ( got different attributes into each member of the list) and I would like to delete all the members from list A that doesn't have the same ID from the elements into list B.

Both collections got an int ID attribute to be compared.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命硬 2024-12-18 06:26:03

您可以选择有效的项目,而不是从列表中删除,如下所示:

listA = listA.Where(x=>listB.Any(y=>y.ID == x.ID)).ToList();

Instead of deleting from list you can select valid items as bellow:

listA = listA.Where(x=>listB.Any(y=>y.ID == x.ID)).ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文