|
| Name | Description |
|---|
.gif) .gif) | Aggregate | Overloaded. Applies an accumulator function over a sequence. |
.gif) .gif) | All<(Of <(TSource>)>) | Determines whether all the elements of a sequence satisfy a condition. |
.gif) .gif) | Any | Overloaded. Determines whether any element of an IQueryable<(Of <(T>)>) sequence exists or satisfies a condition. |
.gif) .gif) | AsQueryable | Overloaded. Converts an IEnumerable or generic IEnumerable<(Of <(T>)>) to an IQueryable or generic IQueryable<(Of <(T>)>). |
.gif) .gif) | Average | Overloaded. Computes the average of a sequence of numeric values. |
.gif) .gif) | Cast<(Of <(TResult>)>) | Converts the elements of an IQueryable to the specified type. |
.gif) .gif) | Concat<(Of <(TSource>)>) | Concatenates two sequences. |
.gif) .gif) | Contains | Overloaded. Determines whether an IQueryable<(Of <(T>)>) contains a specified element. |
.gif) .gif) | Count | Overloaded. Returns the number of elements in a sequence. |
.gif) .gif) | DefaultIfEmpty | Overloaded. Returns the elements in a sequence or a default valued singleton collection if the sequence is empty. |
.gif) .gif) | Distinct | Overloaded. Returns distinct elements from a sequence. |
.gif) .gif) | ElementAt<(Of <(TSource>)>) | Returns the element at a specified index in a sequence. |
.gif) .gif) | ElementAtOrDefault<(Of <(TSource>)>) | Returns the element at a specified index in a sequence or a default value if the index is out of range. |
.gif) .gif) | Except | Overloaded. Produces the set difference of two sequences. |
.gif) .gif) | First | Overloaded. Returns the first element of a sequence. |
.gif) .gif) | FirstOrDefault | Overloaded. Returns the first element of a sequence, or a default value if no element is found. |
.gif) .gif) | GroupBy | Overloaded. Groups the elements of a sequence. |
.gif) .gif) | GroupJoin | Overloaded. Correlates the elements of two sequences based on key equality and groups the results. |
.gif) .gif) | Intersect | Overloaded. Produces the set intersection of two sequences. |
.gif) .gif) | Join | Overloaded. Correlates the elements of two sequences based on matching keys. |
.gif) .gif) | Last | Overloaded. Returns the last element in a sequence. |
.gif) .gif) | LastOrDefault | Overloaded. Returns the last element of a sequence, or a default value if no element is found. |
.gif) .gif) | LongCount | Overloaded. Returns an Int64 that represents the number of elements in sequence. |
.gif) .gif) | Max | Overloaded. Returns the maximum value in a sequence. |
.gif) .gif) | Min | Overloaded. Returns the minimum value in a sequence. |
.gif) .gif) | OfType<(Of <(TResult>)>) | Filters the elements of an IQueryable based on a specified type. |
.gif) .gif) | OrderBy | Overloaded. Sorts the elements of a sequence in ascending order. |
.gif) .gif) | OrderByDescending | Overloaded. Sorts the elements of a sequence in descending order. |
.gif) .gif) | Reverse<(Of <(TSource>)>) | Inverts the order of the elements in a sequence. |
.gif) .gif) | Select | Overloaded. Projects each element of a sequence into a new form. |
.gif) .gif) | SelectMany | Overloaded. Projects each element of a sequence to an IEnumerable<(Of <(T>)>) and combines the resulting sequences into one sequence of type IQueryable<(Of <(T>)>). |
.gif) .gif) | SequenceEqual | Overloaded. Determines whether two sequences are equal. |
.gif) .gif) | Single | Overloaded. Returns a single, specific element of a sequence. |
.gif) .gif) | SingleOrDefault | Overloaded. Returns a single, specific element of a sequence, or a default value if no such element is found. |
.gif) .gif) | Skip<(Of <(TSource>)>) | Bypasses a specified number of elements in a sequence and then returns the remaining elements. |
.gif) .gif) | SkipWhile | Overloaded. Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. |
.gif) .gif) | Sum | Overloaded. Computes the sum of a sequence of numeric values. |
.gif) .gif) | Take<(Of <(TSource>)>) | Returns a specified number of contiguous elements from the start of a sequence. |
.gif) .gif) | TakeWhile | Overloaded. Returns elements from a sequence as long as a specified condition is true, and then skips the remaining elements. |
.gif) .gif) | ThenBy | Overloaded. Performs a subsequent ordering of the elements in a sequence in ascending order. |
.gif) .gif) | ThenByDescending | Overloaded. Performs a subsequent ordering of the elements in a sequence in descending order. |
.gif) .gif) | Union | Overloaded. Produces the set union of two sequences. |
.gif) .gif) | Where | Overloaded. Filters a sequence of values based on a predicate. |