on(C# 参考)

on 上下文关键字在查询表达式的 join 子句中用于指定联接条件。

示例

下面的示例演示 on 在 join 子句中的用法。

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

请参见

概念

LINQ 查询表达式(C# 编程指南)

其他资源

C# 参考