📜  LINQ设置操作

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

LINQ设置操作

在LINQ中,根据相同或不同集合中是否存在等效元素,使用集合运算符返回结果集。

在LINQ中,我们有不同类型的集合运算符可用。这些是:

  • 联盟
  • 相交
  • 不同

所有这些集合运算符都将像不同的运算符一样执行运算符,例如从集合中删除重复的元素,或者合并集合的所有元素,或者根据我们的要求从集合中保留一些元素。

下表显示了与LINQ中的集合运算符有关的更多详细信息。

Operators Description
UNION Union operator combines multiple collections into single collection and return the resultant collection with unique element.
INTERSECT It returns the element in a sequence, which is common in both the input sequence.
DISTINCT It removes the duplicate elements from the collection and returns the collection with unique values.
EXCEPT It returns the sequence element from the first input sequence, which is not present in the second input sequence.