Updates the named element if and only if the provided value is less than its current value (see $max).
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
Syntaxpublic UpdateBuilder Min(
	string name,
	BsonValue value
)
Public Function Min ( 
	name As String,
	value As BsonValue
) As UpdateBuilder
member Min : 
        name : string * 
        value : BsonValue -> UpdateBuilder 
Parameters
- name
- Type: SystemString
 The name of the element to be updated.
- value
- Type: MongoDB.BsonBsonValue
 The value to use.
Return Value
Type: 
UpdateBuilderThe builder (so method calls can be chained).
 See Also
See Also