다음을 통해 공유


on(C# 참조)

on 상황별 키워드는 쿼리 식의 join 절에 사용되어 조인 조건을 지정합니다.

예시

다음 예제에서는 join 절에 on을 사용하는 방법을 보여 줍니다.

var innerJoinQuery =
    from category in categories
    join prod in products on category.ID equals prod.CategoryID
    select new { ProductName = prod.Name, Category = category.Name };

참고 항목