Operators
Joins
Quantifier Operations
Method Name
Description
All
Determines whether all the elements in a sequence satisfy a condition.
Any
Determines whether any elements in a sequence satisfy a condition.
Contains
Determines whether a sequence contains a specified element.
Set Operations
Method names
Description
Distinct
or DistinctBy
Removes duplicate values from a collection.
Except
or ExceptBy
Returns the set difference, which means the elements of one collection that do not appear in a second collection.
Intersect
or IntersectBy
Returns the set intersection, which means elements that appear in each of two collections.
Union
or UnionBy
Returns the set union, which means unique elements that appear in either of two collections.
Last updated
Was this helpful?