CombinedPipelineDefinitionTInput, TIntermediateOutput, TOutput Constructor |
Namespace: MongoDB.DriverAssembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.3.0
Syntax public CombinedPipelineDefinition(
PipelineDefinition<TInput, TIntermediateOutput> first,
PipelineDefinition<TIntermediateOutput, TOutput> second
)
Public Sub New (
first As PipelineDefinition(Of TInput, TIntermediateOutput),
second As PipelineDefinition(Of TIntermediateOutput, TOutput)
)
new :
first : PipelineDefinition<'TInput, 'TIntermediateOutput> *
second : PipelineDefinition<'TIntermediateOutput, 'TOutput> -> CombinedPipelineDefinition
Parameters
- first
- Type: MongoDB.DriverPipelineDefinitionTInput, TIntermediateOutput
The first pipeline. - second
- Type: MongoDB.DriverPipelineDefinitionTIntermediateOutput, TOutput
The second pipeline.
See Also