IMongoDatabaseAggregateToCollectionTResult Method (IClientSessionHandle, PipelineDefinitionNoPipelineInput, TResult, AggregateOptions, CancellationToken) |
Runs an aggregation pipeline.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax void AggregateToCollection<TResult>(
IClientSessionHandle session,
PipelineDefinition<NoPipelineInput, TResult> pipeline,
AggregateOptions options = null,
CancellationToken cancellationToken = null
)
Sub AggregateToCollection(Of TResult) (
session As IClientSessionHandle,
pipeline As PipelineDefinition(Of NoPipelineInput, TResult),
Optional options As AggregateOptions = Nothing,
Optional cancellationToken As CancellationToken = Nothing
)
abstract AggregateToCollection :
session : IClientSessionHandle *
pipeline : PipelineDefinition<NoPipelineInput, 'TResult> *
?options : AggregateOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _options = defaultArg options null
let _cancellationToken = defaultArg cancellationToken null
*)
-> unit
Parameters
- session
- Type: MongoDB.DriverIClientSessionHandle
The session. - pipeline
- Type: MongoDB.DriverPipelineDefinitionNoPipelineInput, TResult
The pipeline. - options (Optional)
- Type: MongoDB.DriverAggregateOptions
The options. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Type Parameters
- TResult
- The type of the result.
See Also