方法 : 2 つのシーケンスの積集合を返す (LINQ to SQL)
更新 : November 2007
2 つのシーケンスの積集合を返すには、Intersect 演算子を使用します。
使用例
この例では、Intersect を使用して、Customers と Employees の両方が居住しているすべての国のシーケンスを返します。
Dim infoQuery = _
(From cust In db.Customers _
Select cust.Country) _
.Intersect _
(From emp In db.Employees _
Select emp.Country)
var infoQuery =
(from cust in db.Customers
select cust.Country)
.Intersect
(from emp in db.Employees
select emp.Country)
;
LINQ to SQL では、Intersect 演算は集合でのみ適切に定義されます。マルチセットのセマンティクスは未定義です。