Click or drag to resize

MongoQueryable Class

Extension for IMongoQueryable.
Inheritance Hierarchy
System.Object
  MongoDB.Driver.Linq.MongoQueryable

Namespace:  MongoDB.Driver.Linq
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public static class MongoQueryable

The MongoQueryable type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAnyAsync<TSource>(IMongoQueryable<TSource>, CancellationToken)
Determines whether a sequence contains any elements.
Public methodStatic memberAnyAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken)
Determines whether any element of a sequence satisfies a condition.
Public methodStatic memberAppendStage<TSource, TResult>
Appends an arbitrary stage to the LINQ pipeline.
Public methodStatic memberAverageAsync(IMongoQueryable<Decimal>, CancellationToken)
Computes the average of a sequence of Decimal values.
Public methodStatic memberAverageAsync(IMongoQueryable<Double>, CancellationToken)
Computes the average of a sequence of Double values.
Public methodStatic memberAverageAsync(IMongoQueryable<Int32>, CancellationToken)
Computes the average of a sequence of Int32 values.
Public methodStatic memberAverageAsync(IMongoQueryable<Int64>, CancellationToken)
Computes the average of a sequence of Int64 values.
Public methodStatic memberAverageAsync(IMongoQueryable<Nullable<Decimal>>, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryable<Nullable<Double>>, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryable<Nullable<Int32>>, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryable<Nullable<Int64>>, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryable<Nullable<Single>>, CancellationToken)
Public methodStatic memberAverageAsync(IMongoQueryable<Single>, CancellationToken)
Computes the average of a sequence of Single values.
Public methodStatic memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken)
Computes the average of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Double>>>, CancellationToken)
Computes the average of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int32>>>, CancellationToken)
Computes the average of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int64>>>, CancellationToken)
Computes the average of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Single>>>, CancellationToken)
Computes the average of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberAverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberCountAsync<TSource>(IMongoQueryable<TSource>, CancellationToken)
Returns the number of elements in a sequence.
Public methodStatic memberCountAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken)
Returns the number of elements in the specified sequence that satisfies a condition.
Public methodStatic memberDensify<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Object>>, DensifyRange, IEnumerable<Expression<Func<TSource, Object>>>)
Adds a $densify stage to the LINQ pipeline.
Public methodStatic memberDensify<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Object>>, DensifyRange,Expression<Func<TSource, Object>>[])
Adds a $densify stage to the LINQ pipeline.
Public methodStatic memberDistinct<TSource>
Returns distinct elements from a sequence by using the default equality comparer to compare values.
Public methodStatic memberDocuments<TDocument>(IMongoQueryable<NoPipelineInput>,TDocument[])
Injects a sequence of documents at the beginning of a pipeline.
Public methodStatic memberDocuments<TDocument>(IMongoQueryable<NoPipelineInput>, IEnumerable<TDocument>, IBsonSerializer<TDocument>)
Injects a sequence of documents at the beginning of a pipeline.
Public methodStatic memberFirstAsync<TSource>(IMongoQueryable<TSource>, CancellationToken)
Returns the first element of a sequence.
Public methodStatic memberFirstAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken)
Returns the first element of a sequence that satisfies a specified condition.
Public methodStatic memberFirstOrDefaultAsync<TSource>(IMongoQueryable<TSource>, CancellationToken)
Returns the first element of a sequence, or a default value if the sequence contains no elements.
Public methodStatic memberFirstOrDefaultAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberGroupBy<TSource, TKey>(IMongoQueryable<TSource>, Expression<Func<TSource, TKey>>)
Groups the elements of a sequence according to a specified key selector function.
Public methodStatic memberGroupBy<TSource, TKey, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, TKey>>, Expression<Func<TKey, IEnumerable<TSource>, 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 memberGroupJoin<TOuter, TInner, TKey, TResult>(IMongoQueryable<TOuter>, IMongoCollection<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, IEnumerable<TInner>, TResult>>)
Correlates the elements of two sequences based on key equality and groups the results.
Public methodStatic memberGroupJoin<TOuter, TInner, TKey, TResult>(IMongoQueryable<TOuter>, IEnumerable<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, IEnumerable<TInner>, TResult>>)
Correlates the elements of two sequences based on key equality and groups the results.
Public methodStatic memberJoin<TOuter, TInner, TKey, TResult>(IMongoQueryable<TOuter>, IMongoCollection<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, TInner, TResult>>)
Correlates the elements of two sequences based on matching keys.
Public methodStatic memberJoin<TOuter, TInner, TKey, TResult>(IMongoQueryable<TOuter>, IEnumerable<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, TInner, TResult>>)
Correlates the elements of two sequences based on matching keys.
Public methodStatic memberLongCountAsync<TSource>(IMongoQueryable<TSource>, CancellationToken)
Returns the number of elements in a sequence.
Public methodStatic memberLongCountAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken)
Returns the number of elements in the specified sequence that satisfies a condition.
Public methodStatic memberMaxAsync<TSource>(IMongoQueryable<TSource>, CancellationToken)
Public methodStatic memberMaxAsync<TSource, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, TResult>>, CancellationToken)
Public methodStatic memberMinAsync<TSource>(IMongoQueryable<TSource>, CancellationToken)
Public methodStatic memberMinAsync<TSource, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, TResult>>, CancellationToken)
Public methodStatic memberOfType<TResult>
Filters the elements of an IMongoQueryable based on a specified type.
Public methodStatic memberOrderBy<TSource, TKey>
Sorts the elements of a sequence in ascending order according to a key.
Public methodStatic memberOrderByDescending<TSource, TKey>
Sorts the elements of a sequence in descending order according to a key.
Public methodStatic memberSample<TSource>
Returns a sample of the elements in the source.
Public methodStatic memberSearch<TSource>
Appends a $search stage to the LINQ pipeline.
Public methodStatic memberSearchMeta<TSource>
Appends a $searchMeta stage to the LINQ pipeline.
Public methodStatic memberSelect<TSource, TResult>
Projects each element of a sequence into a new form by incorporating the element's index.
Public methodStatic memberSelectMany<TSource, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, IEnumerable<TResult>>>)
Public methodStatic memberSelectMany<TSource, TCollection, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, IEnumerable<TCollection>>>, Expression<Func<TSource, TCollection, TResult>>)
Projects each element of a sequence to an IEnumerable<T> 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 memberSingleAsync<TSource>(IMongoQueryable<TSource>, CancellationToken)
Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.
Public methodStatic memberSingleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberSingleOrDefaultAsync<TSource>(IMongoQueryable<TSource>, 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 memberSingleOrDefaultAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberSkip<TSource>(IMongoQueryable<TSource>, Int32)
Bypasses a specified number of elements in a sequence and then returns the remaining elements.
Public methodStatic memberSkip<TSource>(IMongoQueryable<TSource>, Int64)
Bypasses a specified number of elements in a sequence and then returns the remaining elements.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Decimal>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Double>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Int32>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Int64>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Nullable<Decimal>>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Nullable<Double>>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Nullable<Int32>>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Nullable<Int64>>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Nullable<Single>>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation(IMongoQueryable<Single>)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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(IMongoQueryable<Decimal>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryable<Double>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryable<Int32>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryable<Int64>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryable<Nullable<Decimal>>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryable<Nullable<Double>>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryable<Nullable<Int32>>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryable<Nullable<Int64>>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryable<Nullable<Single>>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync(IMongoQueryable<Single>, CancellationToken)
Computes the population standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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(IMongoQueryable<Decimal>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryable<Double>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryable<Int32>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryable<Int64>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryable<Nullable<Decimal>>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryable<Nullable<Double>>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryable<Nullable<Int32>>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryable<Nullable<Int64>>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryable<Nullable<Single>>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample(IMongoQueryable<Single>)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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(IMongoQueryable<Decimal>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryable<Double>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryable<Int32>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryable<Int64>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryable<Nullable<Decimal>>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryable<Nullable<Double>>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryable<Nullable<Int32>>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryable<Nullable<Int64>>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryable<Nullable<Single>>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync(IMongoQueryable<Single>, CancellationToken)
Computes the sample standard deviation of a sequence of values.
Public methodStatic memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<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 memberStandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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(IMongoQueryable<Decimal>, CancellationToken)
Computes the sum of a sequence of Decimal values.
Public methodStatic memberSumAsync(IMongoQueryable<Double>, CancellationToken)
Computes the sum of a sequence of Double values.
Public methodStatic memberSumAsync(IMongoQueryable<Int32>, CancellationToken)
Computes the sum of a sequence of Int32 values.
Public methodStatic memberSumAsync(IMongoQueryable<Int64>, CancellationToken)
Computes the sum of a sequence of Int64 values.
Public methodStatic memberSumAsync(IMongoQueryable<Nullable<Decimal>>, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryable<Nullable<Double>>, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryable<Nullable<Int32>>, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryable<Nullable<Int64>>, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryable<Nullable<Single>>, CancellationToken)
Public methodStatic memberSumAsync(IMongoQueryable<Single>, CancellationToken)
Computes the sum of a sequence of Single values.
Public methodStatic memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken)
Computes the sum of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Double>>>, CancellationToken)
Computes the sum of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int32>>>, CancellationToken)
Computes the sum of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int64>>>, CancellationToken)
Computes the sum of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Single>>>, CancellationToken)
Computes the sum of the sequence of Nullable<T> values that is obtained by invoking a projection function on each element of the input sequence.
Public methodStatic memberSumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, 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 memberTake<TSource>(IMongoQueryable<TSource>, Int32)
Returns a specified number of contiguous elements from the start of a sequence.
Public methodStatic memberTake<TSource>(IMongoQueryable<TSource>, Int64)
Returns a specified number of contiguous elements from the start of a sequence.
Public methodStatic memberThenBy<TSource, TKey>
Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.
Public methodStatic memberThenByDescending<TSource, TKey>
Performs a subsequent ordering of the elements in a sequence in descending order according to a key.
Public methodStatic memberWhere<TSource>
Filters a sequence of values based on a predicate.
Top
See Also