PipelineStageDefinitionBuilderUnionWithTInput, TWith Method |
Creates a $unionWith stage.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax public static PipelineStageDefinition<TInput, TInput> UnionWith<TInput, TWith>(
IMongoCollection<TWith> withCollection,
PipelineDefinition<TWith, TInput> withPipeline = null
)
Public Shared Function UnionWith(Of TInput, TWith) (
withCollection As IMongoCollection(Of TWith),
Optional withPipeline As PipelineDefinition(Of TWith, TInput) = Nothing
) As PipelineStageDefinition(Of TInput, TInput)
static member UnionWith :
withCollection : IMongoCollection<'TWith> *
?withPipeline : PipelineDefinition<'TWith, 'TInput>
(* Defaults:
let _withPipeline = defaultArg withPipeline null
*)
-> PipelineStageDefinition<'TInput, 'TInput>
Parameters
- withCollection
- Type: MongoDB.DriverIMongoCollectionTWith
The with collection. - withPipeline (Optional)
- Type: MongoDB.DriverPipelineDefinitionTWith, TInput
The with pipeline.
Type Parameters
- TInput
- The type of the input documents.
- TWith
- The type of the with collection documents.
Return Value
Type:
PipelineStageDefinitionTInput,
TInputThe stage.
See Also