如何:返回两个序列之间的差集 (LINQ to SQL)
使用 Except 运算符可返回两个序列之间的差集。
示例
此示例使用 Except 返回有 Customers 居住但无 Employees 居住的所有国家/地区的序列。
Dim infoQuery = _
(From cust In db.Customers _
Select cust.Country) _
.Except _
(From emp In db.Employees _
Select emp.Country)
var infoQuery =
(from cust in db.Customers
select cust.Country)
.Except
(from emp in db.Employees
select emp.Country)
;
在 LINQ to SQL 中,Except 运算仅对集合而言是定义完善的。 针对多重集的语义尚未定义。