방법: 두 시퀀스의 합집합 반환(LINQ to SQL)
업데이트: November 2007
Union 연산자를 사용하여 두 시퀀스의 합집합을 반환합니다.
예제
이 예제에서는 Union을 사용하여 Customers 또는 Employees가 있는 모든 국가의 시퀀스를 반환합니다.
Dim infoQuery = _
(From cust In db.Customers _
Select cust.Country) _
.Union _
(From emp In db.Employees _
Select emp.Country)
var infoQuery =
(from cust in db.Customers
select cust.Country)
.Union
(from emp in db.Employees
select emp.Country)
;
LINQ to SQL에서 Union 연산자는 순서가 지정되지 않은 다중 집합의 연결(SQL UNION ALL 절의 효율적인 결과)로 다중 집합에 대해 정의되어 있습니다.