Click or drag to resize
UpdateTDocumentMul Method (ExpressionFuncTDocument, Double, Double)
Multiplies the named element by a value (see $mul).

Namespace: MongoDB.Driver.Builders
Assembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.0.1
Syntax
public static UpdateBuilder<TDocument> Mul(
	Expression<Func<TDocument, double>> memberExpression,
	double value
)

Parameters

memberExpression
Type: System.Linq.ExpressionsExpressionFuncTDocument, Double
The member expression.
value
Type: SystemDouble
The value to multiply by.

Return Value

Type: UpdateBuilderTDocument
The builder (so method calls can be chained).
See Also