使用LINQ筛选类型集合中的重复项
本文关键字:集合 LINQ 筛选 类型 使用 | 更新日期: 2023-09-27 18:21:22
我通过对两个参数进行分组来过滤列表,并根据createdate(使用first())在子组列表中选择最新的类型。这消除了x.application和x.externalid属性上的重复项。
var list = ((List<SomeType>)xDic)
.GroupBy(x => new {x.Application, x.ExternalID})
.OrderByDescending(z => z.First().CreateDate)
.Select(y => y.First()).ToList();
我遇到的问题是定义另一个属性组合(x.application和x.externaldisplayid)来进行筛选,并按分组来获取第一个。
总之,我需要根据((x.application/x.externalid)OR(x.application/x.externaldisplayid))组合过滤掉任何重复项,从而获得一个唯一的SomeTypes列表。
Example set:
{ "extID": 1234, "extDspID" : 111, "App" : "Test", "CreateDate": 2/01/2015}
{ "extID": 1234, "extDspID" : 5, "App" : "Test", "CreateDate": 1/01/2015}
{ "extID": 012, "extDspID" : 90, "App" : "Mono", "CreateDate": 6/06/2015}
{ "extID": 999, "extDspID" : 78, "App" : "Epic", "CreateDate": 8/08/2015}
{ "extID": 333, "extDspID" : 78, "App" : "Epic", "CreateDate": 8/12/2015}
{ "extID": 345, "extDspID" : 33, "App" : "Test", "CreateDate": 2/01/2015}
{ "extID": 666, "extDspID" : 33, "App" : "Test", "CreateDate": 1/01/2015}
desired result:
{ "extID": 1234, "extDspID" : 111, "App" : "Test", "CreateDate": 2/01/2015}
{ "extID": 012, "extDspID" : 90, "App" : "Mono", "CreateDate": 6/06/2015}
{ "extID": 333, "extDspID" : 78, "App" : "Epic", "CreateDate": 8/12/2015}
{ "extID": 345, "extDspID" : 33, "App" : "Test", "CreateDate": 2/01/2015}
首先,声明两个相等比较器来指定两个条件,如下所示:
public class MyEqualityComparer1 : IEqualityComparer<SomeType>
{
public bool Equals(SomeType x, SomeType y)
{
return x.Application == y.Application && x.ExternalID == y.ExternalID;
}
public int GetHashCode(SomeType obj)
{
return (obj.Application + obj.ExternalID).GetHashCode();
}
}
public class MyEqualityComparer2 : IEqualityComparer<SomeType>
{
public bool Equals(SomeType x, SomeType y)
{
return x.Application == y.Application && x.ExternalDisplayId == y.ExternalDisplayId;
}
public int GetHashCode(SomeType obj)
{
return (obj.Application + obj.ExternalDisplayId).GetHashCode();
}
}
然后,按CreatedDate
排序,然后使用Distinct
过滤列表,如下所示:
var result = xDic
.OrderByDescending(x => x.CreateDate)
.Distinct(new MyEqualityComparer1())
.Distinct(new MyEqualityComparer2());
Distinct
方法应该删除后面的项,因此我们应该能够根据我们使用OrderByDescending
的事实来确保Distinct
将删除具有较新CreatedTime
的项。
然而,由于Distinct
的文档并不能保证这一点,您可以使用这样一种自定义的不同方法:
public static class Extensions
{
public static IEnumerable<T> OrderedDistinct<T>(this IEnumerable<T> enumerable, IEqualityComparer<T> comparer)
{
HashSet<T> hash_set = new HashSet<T>(comparer);
foreach(var item in enumerable)
if (hash_set.Add(item))
yield return item;
}
}
并像这样使用:
var result = xDic
.OrderByDescending(x => x.CreateDate)
.OrderedDistinct(new MyEqualityComparer1())
.OrderedDistinct(new MyEqualityComparer2());
当前接受的答案不会对"SomeType"对象进行正确排序,因此不会产生所需的结果集。
我在这里实现了一个解决方案:
https://dotnetfiddle.net/qBkIXo
我的解决方案也基于Distinct(请参阅此处的MSDN文档)。我生成哈希的方式是基于这种巧妙的方法,它使用匿名类型,例如
public int GetHashCode(SomeType sometype)
{
//Calculate the hash code for the SomeType.
return new { sometype.Application, sometype.ExternalID }.GetHashCode();
}
为了获得正确的预期结果,需要组合分组、排序和使用不同的方法,例如
var noduplicates = products.GroupBy(x => new {x.Application, x.ExternalDisplayId})
.Select(y => y.OrderByDescending(x => x.CreateDate).First())
.ToList()
.Distinct(new ApplicationExternalDisplayIdComparer())
.GroupBy(x => new {x.Application, x.ExternalID})
.Select(y => y.OrderByDescending(x => x.CreateDate).First())
.ToList()
.Distinct(new ApplicationExternalIDComparer());
正如你将在小提琴输出中看到的,这给出了你所期望的结果。