Click or drag to resize

MongoQueryable Class

Extension for IMongoQueryable.
Inheritance Hierarchy
SystemObject
  MongoDB.Driver.LinqMongoQueryable

Namespace:  MongoDB.Driver.Linq
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
public static class MongoQueryable

The MongoQueryable type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAnyAsyncTSource(IMongoQueryableTSource, CancellationToken)
Determines whether a sequence contains any elements.
Public methodStatic memberAnyAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken)
Determines whether any element of a sequence satisfies a condition.
Public methodStatic memberAverageAsync(IMongoQueryableDecimal, CancellationToken)
Computes the average of a sequence of Decimal values.
Public methodStatic memberAverageAsync(IMongoQueryableDouble, CancellationToken)
Computes the average of a sequence of Double values.
Public methodStatic memberAverageAsync(IMongoQueryableInt32, CancellationToken)
Computes the average of a sequence of Int32 values.
Public methodStatic memberAverageAsync(IMongoQueryableInt64, CancellationToken)
Computes the average of a sequence of Int64 values.
Public methodStatic memberAverageAsync(IMongoQueryableNullableDecimal, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryableNullableDouble, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryableNullableInt32, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryableNullableInt64, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryableNullableSingle, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryableSingle, CancellationToken)
Computes the average of a sequence of Single values.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberAverageAsyncTSource(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.
Public methodStatic memberCountAsyncTSource(IMongoQueryableTSource, CancellationToken)
Returns the number of elements in a sequence.
Public methodStatic memberCountAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken)
Returns the number of elements in the specified sequence that satisfies a condition.
Public methodStatic memberDistinctTSource
Returns distinct elements from a sequence by using the default equality comparer to compare values.
Public methodStatic memberFirstAsyncTSource(IMongoQueryableTSource, CancellationToken)
Returns the first element of a sequence.
Public methodStatic memberFirstAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken)
Returns the first element of a sequence that satisfies a specified condition.
Public methodStatic memberFirstOrDefaultAsyncTSource(IMongoQueryableTSource, CancellationToken)
Returns the first element of a sequence, or a default value if the sequence contains no elements.
Public methodStatic memberFirstOrDefaultAsyncTSource(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.
Public methodStatic memberGroupByTSource, TKey(IMongoQueryableTSource, ExpressionFuncTSource, TKey)
Groups the elements of a sequence according to a specified key selector function.
Public methodStatic memberGroupByTSource, 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.
Public methodStatic memberGroupJoinTOuter, 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.
Public methodStatic memberGroupJoinTOuter, 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.
Public methodStatic memberJoinTOuter, TInner, TKey, TResult(IMongoQueryableTOuter, IMongoCollectionTInner, ExpressionFuncTOuter, TKey, ExpressionFuncTInner, TKey, ExpressionFuncTOuter, TInner, TResult)
Correlates the elements of two sequences based on matching keys.
Public methodStatic memberJoinTOuter, TInner, TKey, TResult(IMongoQueryableTOuter, IEnumerableTInner, ExpressionFuncTOuter, TKey, ExpressionFuncTInner, TKey, ExpressionFuncTOuter, TInner, TResult)
Correlates the elements of two sequences based on matching keys.
Public methodStatic memberLongCountAsyncTSource(IMongoQueryableTSource, CancellationToken)
Returns the number of elements in a sequence.
Public methodStatic memberLongCountAsyncTSource(IMongoQueryableTSource, ExpressionFuncTSource, Boolean, CancellationToken)
Returns the number of elements in the specified sequence that satisfies a condition.
Public methodStatic memberMaxAsyncTSource(IMongoQueryableTSource, CancellationToken)
Public methodStatic memberMaxAsyncTSource, TResult(IMongoQueryableTSource, ExpressionFuncTSource, TResult, CancellationToken)
Public methodStatic memberMinAsyncTSource(IMongoQueryableTSource, CancellationToken)
Public methodStatic memberMinAsyncTSource, TResult(IMongoQueryableTSource, ExpressionFuncTSource, TResult, CancellationToken)
Public methodStatic memberOfTypeTResult
Filters the elements of an IMongoQueryable based on a specified type.
Public methodStatic memberOrderByTSource, TKey
Sorts the elements of a sequence in ascending order according to a key.
Public methodStatic memberOrderByDescendingTSource, TKey
Sorts the elements of a sequence in descending order according to a key.
Public methodStatic memberSampleTSource
Returns a sample of the elements in the source.
Public methodStatic memberSelectTSource, TResult
Projects each element of a sequence into a new form by incorporating the element's index.
Public methodStatic memberSelectManyTSource, TResult(IMongoQueryableTSource, ExpressionFuncTSource, IEnumerableTResult)
Public methodStatic memberSelectManyTSource, 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.
Public methodStatic memberSingleAsyncTSource(IMongoQueryableTSource, CancellationToken)
Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.
Public methodStatic memberSingleAsyncTSource(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.
Public methodStatic memberSingleOrDefaultAsyncTSource(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.
Public methodStatic memberSingleOrDefaultAsyncTSource(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.
Public methodStatic memberSkipTSource
Bypasses a specified number of elements in a sequence and then returns the remaining elements.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableDecimal)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableDouble)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableInt32)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableInt64)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableNullableDecimal)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableNullableDouble)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableNullableInt32)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableNullableInt64)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableNullableSingle)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryableSingle)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationTSource(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.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableDecimal, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableDouble, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableInt32, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableInt64, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableNullableDecimal, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableNullableDouble, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableNullableInt32, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableNullableInt64, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableNullableSingle, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryableSingle, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationPopulationAsyncTSource(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.
Public methodStatic memberStandardDeviationSample(IMongoQueryableDecimal)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryableDouble)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryableInt32)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryableInt64)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryableNullableDecimal)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryableNullableDouble)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryableNullableInt32)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryableNullableInt64)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryableNullableSingle)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryableSingle)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleTSource(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.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableDecimal, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableDouble, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableInt32, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableInt64, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableNullableDecimal, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableNullableDouble, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableNullableInt32, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableNullableInt64, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableNullableSingle, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryableSingle, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberStandardDeviationSampleAsyncTSource(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.
Public methodStatic memberSumAsync(IMongoQueryableDecimal, CancellationToken)
Computes the sum of a sequence of Decimal values.
Public methodStatic memberSumAsync(IMongoQueryableDouble, CancellationToken)
Computes the sum of a sequence of Double values.
Public methodStatic memberSumAsync(IMongoQueryableInt32, CancellationToken)
Computes the sum of a sequence of Int32 values.
Public methodStatic memberSumAsync(IMongoQueryableInt64, CancellationToken)
Computes the sum of a sequence of Int64 values.
Public methodStatic memberSumAsync(IMongoQueryableNullableDecimal, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryableNullableDouble, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryableNullableInt32, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryableNullableInt64, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryableNullableSingle, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryableSingle, CancellationToken)
Computes the sum of a sequence of Single values.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberSumAsyncTSource(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.
Public methodStatic memberTakeTSource
Returns a specified number of contiguous elements from the start of a sequence.
Public methodStatic memberThenByTSource, TKey
Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.
Public methodStatic memberThenByDescendingTSource, TKey
Performs a subsequent ordering of the elements in a sequence in descending order according to a key.
Public methodStatic memberWhereTSource
Filters a sequence of values based on a predicate.
Top
See Also