如何很好的使用Linq的Distinct方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何很好的使用Linq的Distinct方法相关的知识,希望对你有一定的参考价值。
方法1: Distinct 方法中使用的相等比较器。这个比较器需要重写Equals和GetHashCode方法,个人不推荐,感觉较麻烦,需要些多余的类,并且用起来还要实例化一个比较器,当然自己也可以写一个泛型的比较器生成工厂用来专门生成比较器,但仍然觉得较麻烦。方法2:自己扩展一个DistinctBy。这个扩展方法还是很不错的,用起来很简洁,适合为框架添加的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); 参考技术A 自己扩展一个DistinctBy。这个扩展方法还是很不错的,用起来很简洁,适合为框架添加的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);
方法2:通过GroupBy分组后,并取出第一条数据。简单易用,很方便。这是一种迂回策略,代码理解起来没有Distinct表意清晰,虽然实现了效果。
List<Person> distinctPeople = allPeople
.GroupBy(p => new p.Id, p.Name )
.Select(g => g.First())
.ToList();
c# linq Distinct 过滤重复项怎么做啊
newslist = newslist.OrderBy(x=>x.nID).Distinct();
出现错误“ text 数据类型不能选为 DISTINCT,因为它不可比。”
前提是不修改数据库表字段text的类型。
在线等。说详细点哈。
实在想做的话,尝试newslist = newslist.OrderBy(x=>x.nID).ToList().Distinct();
将数据加载入内存,用CLR来做DISTINCT追问
还有什么好的解决方法,数据过滤好,我还要分页。
追答没啥好办法,在text上加DISTINCT本身就有问题,项目回炉重新架构一个吧……
参考技术A 没有足够的上下文,比较好的办法是写一个简单的demo,不然就留你联系。追问865788926
以上是关于如何很好的使用Linq的Distinct方法的主要内容,如果未能解决你的问题,请参考以下文章