Linq利用Distinct去除重复项(可自己指定)

public static IEnumerable<TSource> DistinctBy<TSource, TKey> (this IEnumerable<TSource> source, Func<TSource, TKey> keySelector)
{
    HashSet<TKey> seenKeys = new HashSet<TKey>();
    foreach (TSource element in source)
    {
        if (seenKeys.Add(keySelector(element)))
        {
            yield return element;
        }
    }

使用方法如下(针对ID,和Name进行Distinct)
var query = people.DistinctBy(p => new { p.Id, p.Name });

若仅仅针对ID进行distinct:
var query = people.DistinctBy(p => p.Id);

posted @ 2021-06-05 13:07  自由的鱼  阅读(377)  评论(0编辑  收藏  举报