UpdateDefinitionBuilderTDocumentIncTField Method (ExpressionFuncTDocument, TField, TField) |
Creates an increment operator.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public UpdateDefinition<TDocument> Inc<TField>(
Expression<Func<TDocument, TField>> field,
TField value
)
Public Function Inc(Of TField) (
field As Expression(Of Func(Of TDocument, TField)),
value As TField
) As UpdateDefinition(Of TDocument)
member Inc :
field : Expression<Func<'TDocument, 'TField>> *
value : 'TField -> UpdateDefinition<'TDocument>
Parameters
- field
- Type: System.Linq.ExpressionsExpressionFuncTDocument, TField
The field. - value
- Type: TField
The value.
Type Parameters
- TField
- The type of the field.
Return Value
Type:
UpdateDefinitionTDocumentAn increment operator.
See Also