时间:2022-12-19 13:56:58 | 栏目:.NET代码 | 点击:次
Intersect返回交集,交集是指同时出现在两个集合中的元素,和数据库中的Intersect方法实现功能一样。
var q = (from c in db.Customers select c.Age ).Intersect( from e in db.Employees select e.Age );
Except返回差集,差集是指位于一个集合但不位于另一个集合的元素。Except是把第一个集合里面的数据 去掉在第二个集合里面出现过的数据。
案例一:
var q = (from c in db.Customers select c.Name ).Except(from e in db.Employees select e.Name );
案例二:
//1 2 这两条记录 var q1 = from s in db.Student where s.ID < 3 select s; //1 2 3 4 这四条记录 var q2 = from s in db.Student where s.ID < 5 select s; var r = q1.Except(q2).ToList();// 空 var r2 = q2.Except(q1).ToList();//3 4
Distinct返回的序列包含输入序列的唯一元素,该语句是单个集合操作。
List<int> list = new List<int>() {1,2,3,3,3}; var result = list.Distinct();
Result的结果为:{1,2,3}