Linq distinct 方法仅适用于特定属性[重复]

Posted

技术标签:

【中文标题】Linq distinct 方法仅适用于特定属性[重复]【英文标题】:Linq distinct method only for a specific property [duplicate] 【发布时间】:2013-12-20 13:32:40 【问题描述】:

在此代码 sn-p 中,如何在选择所有其他值 [ e.Firstname, e.Surname, e.EntityNumber ] 时仅对 e.EntityNumber 使用不同的功能。

response
   .Categories
   .SelectMany(c => c.Events)
   .Select(e => new  e.Firstname, e.Surname, e.EntityNumber )
   .Distinct()
   .ToList()

【问题讨论】:

另见Why is there no Linq method to return distinct values by a predicate? 【参考方案1】:

您可以改用GroupBy

response
   .Categories
   .SelectMany(c => c.Events)
   .Select(e => new  e.Firstname, e.Surname, e.EntityNumber )
   .GroupBy(x => x.EntityNumber)
   .Select(grp => grp.First())
   .ToList()

我选择了每组的任意一行(第一行)。您可以根据自己的逻辑更改grp.First()

//...
.GroupBy(x => x.EntityNumber)
.Select(grp => grp.OrderBy(x => /* Insert logic here */).First())
//...

【讨论】:

抱歉这么不礼貌:)【参考方案2】:

你可以实现一个扩展方法DistinctBy

public static IEnumerable<TSource> DistinctBy<TSource, TKey>(this IEnumerable<TSource> source, 
    Func<TSource, TKey> keySelector, IEqualityComparer<TKey> comparer = null)

    if (source == null) throw new ArgumentNullException("source");
    if (keySelector == null) throw new ArgumentNullException("keySelector");

    var keys = new HashSet<TKey>(comparer);
    foreach (var element in source)
    
        if (keys.Add(keySelector(element)))
        
            yield return element;
        
    

【讨论】:

以上是关于Linq distinct 方法仅适用于特定属性[重复]的主要内容,如果未能解决你的问题,请参考以下文章

COUNT(DISTINCT) 的百分位数与相关 WHERE 仅适用于视图(或没有 DISTINCT)

FxCop 中的自定义规则仅适用于由特定类型的方法调用的方法

System.Linq Distinct 方法使用

换行换行符不适用于 UILabel 仅适用于特定文本字符串

仅适用于类及其子类的属性

为啥我的 charFormat 样式仅适用于选择,并且仅适用于特定方向的选择?