从不同集合中删除另一个列表的对象列表
我试图更加努力地研究这些结构,但我绝对不认为它们是演绎性的。当我得到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以选择有效的项目,而不是从列表中删除,如下所示:
Instead of deleting from list you can select valid items as bellow: