使用LINQ找到跨越多个属性重复 [英] Using LINQ to find duplicates across multiple properties

查看:138
本文介绍了使用LINQ找到跨越多个属性重复的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

给定一个类定义如下:

public class MyTestClass
{
    public int ValueA { get; set; }
    public int ValueB { get; set; }
}

如何能重复值在一个MyTestClass []数组中?

How can duplicate values be found in a MyTestClass[] array?

例如,

MyTestClass[] items = new MyTestClass[3];
items[0] = new MyTestClass { ValueA = 1, ValueB = 1 };
items[1] = new MyTestClass { ValueA = 0, ValueB = 1 };
items[2] = new MyTestClass { ValueA = 1, ValueB = 1 };

包含重复的有两个MyTestClass对象,其中值a valueB,则既= 1

Contains a duplicate as there are two MyTestClass objects where ValueA and ValueB both = 1

推荐答案

您可以通过将你的元素通过值a和valueB找到你的副本。 做一个计数他们之后,你会发现哪些是重复的。

You can find your duplicates by grouping your elements by ValueA and ValueB. Do a count on them afterwards and you will find which ones are duplicates.

这是你将如何隔离受骗者:

This is how you would isolate the dupes :

var duplicates = items.GroupBy(i => new {i.ValueA, i.ValueB})
  .Where(g => g.Count() > 1)
  .Select(g => g.Key);

这篇关于使用LINQ找到跨越多个属性重复的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆