Click or drag to resize
Update.Max Method
Updates the named element if and only if the provided value is greater than its current value (see $max).

Namespace: MongoDB.Driver.Builders
Assembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.3.0
Syntax
public static UpdateBuilder Max(
	string name,
	BsonValue value
)

Parameters

name
Type: System.String
The name of the element to be updated.
value
Type: MongoDB.Bson.BsonValue
The value to use.

Return Value

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