Click or drag to resize

ListSetFieldDefinitionsExtensionsSetTDocument, TField Method (ListSetFieldDefinitionsTDocument, FieldDefinitionTDocument, TField, TField)

Set an additional field to value using a constant.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax
public static ListSetFieldDefinitions<TDocument> Set<TDocument, TField>(
	this ListSetFieldDefinitions<TDocument> fields,
	FieldDefinition<TDocument, TField> field,
	TField value
)

Parameters

fields
Type: MongoDB.DriverListSetFieldDefinitionsTDocument
The existing ListSetFieldDefinitions.
field
Type: MongoDB.DriverFieldDefinitionTDocument, TField
The field.
value
Type: TField
The value.

Type Parameters

TDocument
The type of the document.
TField
The type of the field.

Return Value

Type: ListSetFieldDefinitionsTDocument
The ListSetFieldDefinitions instance with a SetFieldDefinition added.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ListSetFieldDefinitionsTDocument. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also