IOrderedAggregateFluent<TResult> Interface |
Namespace: MongoDB.Driver
public interface IOrderedAggregateFluent<TResult> : IAggregateFluent<TResult>, IAsyncCursorSource<TResult>
The IOrderedAggregateFluent< TResult> type exposes the following members.
Name | Description | |
---|---|---|
![]() | AppendStage<TNewResult> |
Appends the stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | As<TNewResult> |
Appends a project stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Group<TNewResult> |
Appends a group stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Limit |
Appends a limit stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Lookup<TForeignDocument, TNewResult> |
Appends a lookup stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Match |
Appends a match stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | OfType<TNewResult> |
Appends a match stage to the pipeline that matches derived documents and changes the result type to the derived type.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Out |
Appends an out stage to the pipeline and executes it, and then returns a cursor to read the contents of the output collection.
(Inherited from IAggregateFluent<TResult>.) |
![]() | OutAsync |
Appends an out stage to the pipeline and executes it, and then returns a cursor to read the contents of the output collection.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Project<TNewResult> |
Appends a project stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Skip |
Appends a skip stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Sort |
Appends a sort stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | ToCursor |
Executes the operation and returns a cursor to the results.
(Inherited from IAsyncCursorSource<TDocument>.) |
![]() | ToCursorAsync |
Executes the operation and returns a cursor to the results.
(Inherited from IAsyncCursorSource<TDocument>.) |
![]() | Unwind<TNewResult>(FieldDefinition<TResult>, IBsonSerializer<TNewResult>) | Obsolete.
Appends an unwind stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Unwind<TNewResult>(FieldDefinition<TResult>, AggregateUnwindOptions<TNewResult>) |
Appends an unwind stage to the pipeline.
(Inherited from IAggregateFluent<TResult>.) |
Name | Description | |
---|---|---|
![]() | Any<TResult> |
Determines whether the cursor returned by a cursor source contains any documents.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | AnyAsync<TResult> |
Determines whether the cursor returned by a cursor source contains any documents.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | First<TResult>(CancellationToken) | Overloaded.
Returns the first document of the aggregate result.
(Defined by IAggregateFluentExtensions.) |
![]() | First<TResult>(CancellationToken) | Overloaded.
Returns the first document of a cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | FirstAsync<TResult>(CancellationToken) | Overloaded.
Returns the first document of the aggregate result.
(Defined by IAggregateFluentExtensions.) |
![]() | FirstAsync<TResult>(CancellationToken) | Overloaded.
Returns the first document of a cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | FirstOrDefault<TResult>(CancellationToken) | Overloaded.
Returns the first document of the aggregate result, or the default value if the result set is empty.
(Defined by IAggregateFluentExtensions.) |
![]() | FirstOrDefault<TResult>(CancellationToken) | Overloaded.
Returns the first document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | FirstOrDefaultAsync<TResult>(CancellationToken) | Overloaded.
Returns the first document of the aggregate result, or the default value if the result set is empty.
(Defined by IAggregateFluentExtensions.) |
![]() | FirstOrDefaultAsync<TResult>(CancellationToken) | Overloaded.
Returns the first document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ForEachAsync<TResult>(Func<TResult, Task>, CancellationToken) | Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ForEachAsync<TResult>(Func<TResult, Int32, Task>, CancellationToken) | Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ForEachAsync<TResult>(Action<TResult>, CancellationToken) | Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ForEachAsync<TResult>(Action<TResult, Int32>, CancellationToken) | Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | Group<TResult>(ProjectionDefinition<TResult, BsonDocument>) | Overloaded.
Appends a group stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Group<TResult, TKey, TNewResult>(Expression<Func<TResult, TKey>>, Expression<Func<IGrouping<TKey, TResult>, TNewResult>>) | Overloaded.
Appends a group stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Lookup<TResult>(String, FieldDefinition<TResult>, FieldDefinition<BsonDocument>, FieldDefinition<BsonDocument>) | Overloaded.
Appends a lookup stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Lookup<TResult, TForeignDocument, TNewResult>(IMongoCollection<TForeignDocument>, Expression<Func<TResult, Object>>, Expression<Func<TForeignDocument, Object>>, Expression<Func<TNewResult, Object>>, AggregateLookupOptions<TForeignDocument, TNewResult>) | Overloaded.
Appends a lookup stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Match<TResult> |
Appends a match stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Project<TResult>(ProjectionDefinition<TResult, BsonDocument>) | Overloaded.
Appends a project stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Project<TResult, TNewResult>(Expression<Func<TResult, TNewResult>>) | Overloaded.
Appends a project stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Single<TResult>(CancellationToken) | Overloaded.
Returns the only document of the aggregate result. Throws an exception if the result set does not contain exactly one document.
(Defined by IAggregateFluentExtensions.) |
![]() | Single<TResult>(CancellationToken) | Overloaded.
Returns the only document of a cursor returned by a cursor source. This method throws an exception if the cursor does not contain exactly one document.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | SingleAsync<TResult>(CancellationToken) | Overloaded.
Returns the only document of the aggregate result. Throws an exception if the result set does not contain exactly one document.
(Defined by IAggregateFluentExtensions.) |
![]() | SingleAsync<TResult>(CancellationToken) | Overloaded.
Returns the only document of a cursor returned by a cursor source. This method throws an exception if the cursor does not contain exactly one document.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | SingleOrDefault<TResult>(CancellationToken) | Overloaded.
Returns the only document of the aggregate result, or the default value if the result set is empty. Throws an exception if the result set contains more than one document.
(Defined by IAggregateFluentExtensions.) |
![]() | SingleOrDefault<TResult>(CancellationToken) | Overloaded.
Returns the only document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
This method throws an exception if the cursor contains more than one document.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | SingleOrDefaultAsync<TResult>(CancellationToken) | Overloaded.
Returns the only document of the aggregate result, or the default value if the result set is empty. Throws an exception if the result set contains more than one document.
(Defined by IAggregateFluentExtensions.) |
![]() | SingleOrDefaultAsync<TResult>(CancellationToken) | Overloaded.
Returns the only document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
This method throws an exception if the cursor contains more than one document.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | SortBy<TResult> |
Appends an ascending sort stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | SortByDescending<TResult> |
Appends a descending sort stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | ThenBy<TResult> |
Modifies the current sort stage by appending an ascending field specification to it.
(Defined by IAggregateFluentExtensions.) |
![]() | ThenByDescending<TResult> |
Modifies the current sort stage by appending a descending field specification to it.
(Defined by IAggregateFluentExtensions.) |
![]() | ToEnumerable<TResult> |
Wraps a cursor source in an IEnumerable. Each time GetEnumerator is called a new cursor is fetched from the cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ToList<TResult> |
Returns a list containing all the documents returned by the cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ToListAsync<TResult> |
Returns a list containing all the documents returned by the cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | Unwind<TResult>(Expression<Func<TResult, Object>>) | Overloaded.
Appends an unwind stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Unwind<TResult>(FieldDefinition<TResult>) | Overloaded.
Appends an unwind stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Unwind<TResult, TNewResult>(Expression<Func<TResult, Object>>, IBsonSerializer<TNewResult>) | Overloaded.
Appends an unwind stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
![]() | Unwind<TResult, TNewResult>(Expression<Func<TResult, Object>>, AggregateUnwindOptions<TNewResult>) | Overloaded.
Appends an unwind stage to the pipeline.
(Defined by IAggregateFluentExtensions.) |
Name | Description | |
---|---|---|
![]() | Options |
Gets the options.
(Inherited from IAggregateFluent<TResult>.) |
![]() | Stages |
Gets the stages.
(Inherited from IAggregateFluent<TResult>.) |