HOW TO:傳回兩個序列之間的差異 (LINQ to SQL)
更新: November 2007
使用 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 作業僅妥善定義於集合上。尚未定義多重集 (Multiset) 的語意 (Semantics)。