没有 IEqualityComparer 实现的 LINQ
我有 2 个不同类别的集合。 MyClass1 - 姓名、年龄等 MyClass2 - 尼克、年龄等
我想查找除此集合之外的其他内容。类似
list1.Exept(list2, (l1,l2) => l1.Name==l2.Nick);
但我无法编写此代码,需要使用 IEqualityComparer 接口实现我自己的比较器类对于这个小任务来说,它的开销看起来非常大。有什么优雅的解决方案吗?
I have 2 collection with different classes. MyClass1 - Name,Age,etc MyClass2 - Nick, Age, etc
I want to find except of this collections. Something like
list1.Exept(list2, (l1,l2) => l1.Name==l2.Nick);
But i cannt write this code and need to implement my own comparer class with IEqualityComparer interface and it's looking very overhead for this small task. Is there any elegant solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Except
确实不适用于两种不同的序列类型。我建议您使用类似以下内容的内容:(请注意,这不会执行
Except
的“独特”方面。如果您需要,请这么说,我们可以计算出您需要的内容。)Except
really doesn't work with two different sequence types. I suggest that instead, you use something like:(Note that this won't perform the "distinct" aspect of
Except
. If you need that, please say so and we can work out what you need.)好吧,建立一组所有的昵称,然后与之对抗。
Well, build a set of all the nicknames, then run against that.