MongoDatabaseBaseCreateViewTDocument, TResult Method (IClientSessionHandle, String, String, PipelineDefinitionTDocument, TResult, CreateViewOptionsTDocument, CancellationToken) |
Creates a view.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public virtual void CreateView<TDocument, TResult>(
IClientSessionHandle session,
string viewName,
string viewOn,
PipelineDefinition<TDocument, TResult> pipeline,
CreateViewOptions<TDocument> options = null,
CancellationToken cancellationToken = null
)
Public Overridable Sub CreateView(Of TDocument, TResult) (
session As IClientSessionHandle,
viewName As String,
viewOn As String,
pipeline As PipelineDefinition(Of TDocument, TResult),
Optional options As CreateViewOptions(Of TDocument) = Nothing,
Optional cancellationToken As CancellationToken = Nothing
)
abstract CreateView :
session : IClientSessionHandle *
viewName : string *
viewOn : string *
pipeline : PipelineDefinition<'TDocument, 'TResult> *
?options : CreateViewOptions<'TDocument> *
?cancellationToken : CancellationToken
(* Defaults:
let _options = defaultArg options null
let _cancellationToken = defaultArg cancellationToken null
*)
-> unit
override CreateView :
session : IClientSessionHandle *
viewName : string *
viewOn : string *
pipeline : PipelineDefinition<'TDocument, 'TResult> *
?options : CreateViewOptions<'TDocument> *
?cancellationToken : CancellationToken
(* Defaults:
let _options = defaultArg options null
let _cancellationToken = defaultArg cancellationToken null
*)
-> unit
Parameters
- session
- Type: MongoDB.DriverIClientSessionHandle
The session. - viewName
- Type: SystemString
The name of the view. - viewOn
- Type: SystemString
The name of the collection that the view is on. - pipeline
- Type: MongoDB.DriverPipelineDefinitionTDocument, TResult
The pipeline. - options (Optional)
- Type: MongoDB.DriverCreateViewOptionsTDocument
The options. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Type Parameters
- TDocument
- The type of the input documents.
- TResult
- The type of the pipeline result documents.
Implements
IMongoDatabaseCreateViewTDocument, TResult(IClientSessionHandle, String, String, PipelineDefinitionTDocument, TResult, CreateViewOptionsTDocument, CancellationToken)See Also