码迷,mamicode.com
首页 > 其他好文 > 详细

LINQ系列:Linq to Object集合操作符

时间:2014-10-22 14:16:04      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   strong   sp   div   on   

  集合操作符对元素的集合或序列集合进行操作,并返回一个集合。LINQ共有4种集合查询操作符:Distinct、Union、Intersect和Except。

1. Distinct

  Distinct操作符删除集合中重复的值,并返回该集合中互不相同的元素。

1>. 原型定义

public static IQueryable<TSource> Distinct<TSource>(this IQueryable<TSource> source);
public static IQueryable<TSource> Distinct<TSource>(this IQueryable<TSource> source, IEqualityComparer<TSource> comparer);

2>. 示例

int[] fibonacci = new int[] { 1, 1, 2, 3, 5, 8, 13, 21 };
var expr = from f in fibonacci
           select f;
expr.Distinct();
int[] fibonacci = new int[] { 1, 1, 2, 3, 5, 8, 13, 21 };
var expr = from f in fibonacci
           where f > 5
           select f;
expr.Distinct();
var expr = from p in context.Products
           select p.ProductName;
expr.Distinct();
var expr = context.Products
    .Select(p => p.ProductName)
    .Distinct();

2. Union

  Union操作符返回两个序列或集合并集中的每个互不相同的元素。与Concat操作符不同,Union操作符返回互不相同的元素,而Concat操作符将返回所有的值。

 

LINQ系列:Linq to Object集合操作符

标签:style   blog   color   io   ar   strong   sp   div   on   

原文地址:http://www.cnblogs.com/libingql/p/4042946.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!