UpdateDefinitionBuilder<TDocument>.CurrentDate Method (FieldDefinition<TDocument>, Nullable<UpdateDefinitionCurrentDateType>) |
Creates a current date operator.
Namespace: MongoDB.DriverAssembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.4.1
Syntaxpublic UpdateDefinition<TDocument> CurrentDate(
FieldDefinition<TDocument> field,
Nullable<UpdateDefinitionCurrentDateType> type = null
)
Public Function CurrentDate (
field As FieldDefinition(Of TDocument),
Optional type As Nullable(Of UpdateDefinitionCurrentDateType) = Nothing
) As UpdateDefinition(Of TDocument)
member CurrentDate :
field : FieldDefinition<'TDocument> *
?type : Nullable<UpdateDefinitionCurrentDateType>
(* Defaults:
let _type = defaultArg type null
*)
-> UpdateDefinition<'TDocument>
Parameters
- field
- Type: MongoDB.Driver.FieldDefinition<TDocument>
The field. - type (Optional)
- Type: System.Nullable<UpdateDefinitionCurrentDateType>
The type.
Return Value
Type:
UpdateDefinition<TDocument>A current date operator.
See Also