ListSetFieldDefinitionsExtensionsSetTDocument, TField Method (ListSetFieldDefinitionsTDocument, ExpressionFuncTDocument, TField, TField) |
Set an additional field to value using an Expression to specify the field and a constant to specify the value.
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,
Expression<Func<TDocument, TField>> field,
TField value
)
<ExtensionAttribute>
Public Shared Function Set(Of TDocument, TField) (
fields As ListSetFieldDefinitions(Of TDocument),
field As Expression(Of Func(Of TDocument, TField)),
value As TField
) As ListSetFieldDefinitions(Of TDocument)
[<ExtensionAttribute>]
static member Set :
fields : ListSetFieldDefinitions<'TDocument> *
field : Expression<Func<'TDocument, 'TField>> *
value : 'TField -> ListSetFieldDefinitions<'TDocument>
Parameters
- fields
- Type: MongoDB.DriverListSetFieldDefinitionsTDocument
The existing ListSetFieldDefinitions. - field
- Type: System.Linq.ExpressionsExpressionFuncTDocument, 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:
ListSetFieldDefinitionsTDocumentThe 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