📜  LINQ联接运算符

📅  最后修改于: 2021-01-06 05:37:09             🧑  作者: Mango

LINQ Join()运算符

在LINQ中,Join()运算符用于将两个或多个列表/集合连接起来,并根据指定条件从集合中获取匹配的数据。 Join()运算符的行为和功能与SQL连接相同。

在LINQ中,我们有不同类型的联接可用。这些是:

  • 内部联接
  • 左外连接
  • 交叉加入
  • 团体加入

通过使用这些联接,我们可以基于指定的表达式从两个集合中获取元素。下表显示了与LINQ中的联接有关的更详细的信息。

Operator Description
Inner Join It returns the element from the collections which satisfy the specified expression.
Left Outer Join It returns all the elements from the left side collection and matching the elements with the right side collection.
Cross Join It returns the Cartesian product of elements in collections.
Group Join The join clause with an ‘into’ expression is called a group join.