UpdateDefinitionBuilderTDocumentMulTField Method (ExpressionFuncTDocument, TField, TField) |
Creates a multiply operator.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public UpdateDefinition<TDocument> Mul<TField>(
Expression<Func<TDocument, TField>> field,
TField value
)
Public Function Mul(Of TField) (
field As Expression(Of Func(Of TDocument, TField)),
value As TField
) As UpdateDefinition(Of TDocument)
member Mul :
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:
UpdateDefinitionTDocumentA multiply operator.
See Also