MongoQueryable Class |
Namespace: MongoDB.Driver.Linq
The MongoQueryable type exposes the following members.
Name | Description | |
---|---|---|
AnyAsyncTSource(IMongoQueryableTSource, CancellationToken) |
Determines whether a sequence contains any elements.
| |
AnyAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken) |
Determines whether any element of a sequence satisfies a condition.
| |
AverageAsync(IMongoQueryableDecimal, CancellationToken) |
Computes the average of a sequence of Decimal values.
| |
AverageAsync(IMongoQueryableDouble, CancellationToken) |
Computes the average of a sequence of Double values.
| |
AverageAsync(IMongoQueryableInt32, CancellationToken) |
Computes the average of a sequence of Int32 values.
| |
AverageAsync(IMongoQueryableInt64, CancellationToken) |
Computes the average of a sequence of Int64 values.
| |
AverageAsync(IMongoQueryableNullableDecimal, CancellationToken) |
Computes the average of a sequence of NullableT values.
| |
AverageAsync(IMongoQueryableNullableDouble, CancellationToken) |
Computes the average of a sequence of NullableT values.
| |
AverageAsync(IMongoQueryableNullableInt32, CancellationToken) |
Computes the average of a sequence of NullableT values.
| |
AverageAsync(IMongoQueryableNullableInt64, CancellationToken) |
Computes the average of a sequence of NullableT values.
| |
AverageAsync(IMongoQueryableNullableSingle, CancellationToken) |
Computes the average of a sequence of NullableT values.
| |
AverageAsync(IMongoQueryableSingle, CancellationToken) |
Computes the average of a sequence of Single values.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Decimal, CancellationToken) |
Computes the average of the sequence of Decimal values that is obtained
by invoking a projection function on each element of the input sequence.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Double, CancellationToken) |
Computes the average of the sequence of Double values that is obtained
by invoking a projection function on each element of the input sequence.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int32, CancellationToken) |
Computes the average of the sequence of Int32 values that is obtained
by invoking a projection function on each element of the input sequence.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int64, CancellationToken) |
Computes the average of the sequence of Int64 values that is obtained
by invoking a projection function on each element of the input sequence.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDecimal, CancellationToken) |
Computes the average of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDouble, CancellationToken) |
Computes the average of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt32, CancellationToken) |
Computes the average of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt64, CancellationToken) |
Computes the average of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableSingle, CancellationToken) |
Computes the average of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
AverageAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Single, CancellationToken) |
Computes the average of the sequence of Single values that is obtained
by invoking a projection function on each element of the input sequence.
| |
CountAsyncTSource(IMongoQueryableTSource, CancellationToken) |
Returns the number of elements in a sequence.
| |
CountAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken) |
Returns the number of elements in the specified sequence that satisfies a condition.
| |
DistinctTSource |
Returns distinct elements from a sequence by using the default equality comparer to compare values.
| |
FirstAsyncTSource(IMongoQueryableTSource, CancellationToken) |
Returns the first element of a sequence.
| |
FirstAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken) |
Returns the first element of a sequence that satisfies a specified condition.
| |
FirstOrDefaultAsyncTSource(IMongoQueryableTSource, CancellationToken) |
Returns the first element of a sequence, or a default value if the sequence contains no elements.
| |
FirstOrDefaultAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken) |
Returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.
| |
GroupByTSource, TKey(IMongoQueryableTSource, ExpressionFuncTSource, TKey) |
Groups the elements of a sequence according to a specified key selector function.
| |
GroupByTSource, TKey, TResult(IMongoQueryableTSource, ExpressionFuncTSource, TKey, ExpressionFuncTKey, IEnumerableTSource, TResult) |
Groups the elements of a sequence according to a specified key selector function
and creates a result value from each group and its key.
| |
GroupJoinTOuter, TInner, TKey, TResult(IMongoQueryableTOuter, IMongoCollectionTInner, ExpressionFuncTOuter, TKey, ExpressionFuncTInner, TKey, ExpressionFuncTOuter, IEnumerableTInner, TResult) |
Correlates the elements of two sequences based on key equality and groups the results.
| |
GroupJoinTOuter, TInner, TKey, TResult(IMongoQueryableTOuter, IEnumerableTInner, ExpressionFuncTOuter, TKey, ExpressionFuncTInner, TKey, ExpressionFuncTOuter, IEnumerableTInner, TResult) |
Correlates the elements of two sequences based on key equality and groups the results.
| |
JoinTOuter, TInner, TKey, TResult(IMongoQueryableTOuter, IMongoCollectionTInner, ExpressionFuncTOuter, TKey, ExpressionFuncTInner, TKey, ExpressionFuncTOuter, TInner, TResult) |
Correlates the elements of two sequences based on matching keys.
| |
JoinTOuter, TInner, TKey, TResult(IMongoQueryableTOuter, IEnumerableTInner, ExpressionFuncTOuter, TKey, ExpressionFuncTInner, TKey, ExpressionFuncTOuter, TInner, TResult) |
Correlates the elements of two sequences based on matching keys.
| |
LongCountAsyncTSource(IMongoQueryableTSource, CancellationToken) |
Returns the number of elements in a sequence.
| |
LongCountAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken) |
Returns the number of elements in the specified sequence that satisfies a condition.
| |
MaxAsyncTSource(IMongoQueryableTSource, CancellationToken) |
Returns the maximum value in a generic IMongoQueryableT.
| |
MaxAsyncTSource, TResult(IMongoQueryableTSource, ExpressionFuncTSource, TResult, CancellationToken) |
Invokes a projection function on each element of a generic IMongoQueryableT and returns the maximum resulting value.
| |
MinAsyncTSource(IMongoQueryableTSource, CancellationToken) |
Returns the minimum value in a generic IMongoQueryableT.
| |
MinAsyncTSource, TResult(IMongoQueryableTSource, ExpressionFuncTSource, TResult, CancellationToken) |
Invokes a projection function on each element of a generic IMongoQueryableT and returns the minimum resulting value.
| |
OfTypeTResult |
Filters the elements of an IMongoQueryable based on a specified type.
| |
OrderByTSource, TKey |
Sorts the elements of a sequence in ascending order according to a key.
| |
OrderByDescendingTSource, TKey |
Sorts the elements of a sequence in descending order according to a key.
| |
SampleTSource |
Returns a sample of the elements in the source.
| |
SelectTSource, TResult |
Projects each element of a sequence into a new form by incorporating the
element's index.
| |
SelectManyTSource, TResult(IMongoQueryableTSource, ExpressionFuncTSource, IEnumerableTResult) |
Projects each element of a sequence to an IEnumerableT and combines the resulting sequences into one sequence.
| |
SelectManyTSource, TCollection, TResult(IMongoQueryableTSource, ExpressionFuncTSource, IEnumerableTCollection, ExpressionFuncTSource, TCollection, TResult) |
Projects each element of a sequence to an IEnumerableT and
invokes a result selector function on each element therein. The resulting values from
each intermediate sequence are combined into a single, one-dimensional sequence and returned.
| |
SingleAsyncTSource(IMongoQueryableTSource, CancellationToken) |
Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.
| |
SingleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken) |
Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.
| |
SingleOrDefaultAsyncTSource(IMongoQueryableTSource, CancellationToken) |
Returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.
| |
SingleOrDefaultAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken) |
Returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition.
| |
SkipTSource |
Bypasses a specified number of elements in a sequence and then returns the
remaining elements.
| |
StandardDeviationPopulation(IMongoQueryableDecimal) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulation(IMongoQueryableDouble) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulation(IMongoQueryableInt32) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulation(IMongoQueryableInt64) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulation(IMongoQueryableNullableDecimal) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulation(IMongoQueryableNullableDouble) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulation(IMongoQueryableNullableInt32) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulation(IMongoQueryableNullableInt64) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulation(IMongoQueryableNullableSingle) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulation(IMongoQueryableSingle) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, Decimal) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, Double) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int32) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int64) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDecimal) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDouble) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt32) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt64) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableSingle) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationTSource(IMongoQueryableTSource, ExpressionFuncTSource, Single) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsync(IMongoQueryableDecimal, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsync(IMongoQueryableDouble, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsync(IMongoQueryableInt32, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsync(IMongoQueryableInt64, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsync(IMongoQueryableNullableDecimal, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsync(IMongoQueryableNullableDouble, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsync(IMongoQueryableNullableInt32, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsync(IMongoQueryableNullableInt64, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsync(IMongoQueryableNullableSingle, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsync(IMongoQueryableSingle, CancellationToken) |
Computes the population standard deviation of a sequence of values.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Decimal, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Double, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int32, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int64, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDecimal, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDouble, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt32, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt64, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableSingle, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationPopulationAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Single, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSample(IMongoQueryableDecimal) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSample(IMongoQueryableDouble) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSample(IMongoQueryableInt32) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSample(IMongoQueryableInt64) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSample(IMongoQueryableNullableDecimal) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSample(IMongoQueryableNullableDouble) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSample(IMongoQueryableNullableInt32) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSample(IMongoQueryableNullableInt64) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSample(IMongoQueryableNullableSingle) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSample(IMongoQueryableSingle) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, Decimal) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, Double) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int32) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int64) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDecimal) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDouble) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt32) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt64) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableSingle) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleTSource(IMongoQueryableTSource, ExpressionFuncTSource, Single) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsync(IMongoQueryableDecimal, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsync(IMongoQueryableDouble, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsync(IMongoQueryableInt32, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsync(IMongoQueryableInt64, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsync(IMongoQueryableNullableDecimal, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsync(IMongoQueryableNullableDouble, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsync(IMongoQueryableNullableInt32, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsync(IMongoQueryableNullableInt64, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsync(IMongoQueryableNullableSingle, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsync(IMongoQueryableSingle, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Decimal, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Double, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int32, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int64, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDecimal, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDouble, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt32, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt64, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableSingle, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
StandardDeviationSampleAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Single, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
| |
SumAsync(IMongoQueryableDecimal, CancellationToken) |
Computes the sum of a sequence of Decimal values.
| |
SumAsync(IMongoQueryableDouble, CancellationToken) |
Computes the sum of a sequence of Double values.
| |
SumAsync(IMongoQueryableInt32, CancellationToken) |
Computes the sum of a sequence of Int32 values.
| |
SumAsync(IMongoQueryableInt64, CancellationToken) |
Computes the sum of a sequence of Int64 values.
| |
SumAsync(IMongoQueryableNullableDecimal, CancellationToken) |
Computes the sum of a sequence of NullableT values.
| |
SumAsync(IMongoQueryableNullableDouble, CancellationToken) |
Computes the sum of a sequence of NullableT values.
| |
SumAsync(IMongoQueryableNullableInt32, CancellationToken) |
Computes the sum of a sequence of NullableT values.
| |
SumAsync(IMongoQueryableNullableInt64, CancellationToken) |
Computes the sum of a sequence of NullableT values.
| |
SumAsync(IMongoQueryableNullableSingle, CancellationToken) |
Computes the sum of a sequence of NullableT values.
| |
SumAsync(IMongoQueryableSingle, CancellationToken) |
Computes the sum of a sequence of Single values.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Decimal, CancellationToken) |
Computes the sum of the sequence of Decimal values that is obtained
by invoking a projection function on each element of the input sequence.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Double, CancellationToken) |
Computes the sum of the sequence of Double values that is obtained
by invoking a projection function on each element of the input sequence.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int32, CancellationToken) |
Computes the sum of the sequence of Int32 values that is obtained
by invoking a projection function on each element of the input sequence.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Int64, CancellationToken) |
Computes the sum of the sequence of Int64 values that is obtained
by invoking a projection function on each element of the input sequence.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDecimal, CancellationToken) |
Computes the sum of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableDouble, CancellationToken) |
Computes the sum of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt32, CancellationToken) |
Computes the sum of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableInt64, CancellationToken) |
Computes the sum of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, NullableSingle, CancellationToken) |
Computes the sum of the sequence of NullableT values that is obtained
by invoking a projection function on each element of the input sequence.
| |
SumAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Single, CancellationToken) |
Computes the sum of the sequence of Single values that is obtained
by invoking a projection function on each element of the input sequence.
| |
TakeTSource |
Returns a specified number of contiguous elements from the start of a sequence.
| |
ThenByTSource, TKey |
Performs a subsequent ordering of the elements in a sequence in ascending
order according to a key.
| |
ThenByDescendingTSource, TKey |
Performs a subsequent ordering of the elements in a sequence in descending
order according to a key.
| |
WhereTSource |
Filters a sequence of values based on a predicate.
|