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)