UpdateDefinitionExtensions.Push<TDocument, TItem> Method (UpdateDefinition<TDocument>, FieldDefinition<TDocument>, TItem) |
Combines an existing update with a push operator.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax public static UpdateDefinition<TDocument> Push<TDocument, TItem>(
this UpdateDefinition<TDocument> update,
FieldDefinition<TDocument> field,
TItem value
)
<ExtensionAttribute>
Public Shared Function Push(Of TDocument, TItem) (
update As UpdateDefinition(Of TDocument),
field As FieldDefinition(Of TDocument),
value As TItem
) As UpdateDefinition(Of TDocument)
[<ExtensionAttribute>]
static member Push :
update : UpdateDefinition<'TDocument> *
field : FieldDefinition<'TDocument> *
value : 'TItem -> UpdateDefinition<'TDocument>
Parameters
- update
- Type: MongoDB.Driver.UpdateDefinition<TDocument>
The update. - field
- Type: MongoDB.Driver.FieldDefinition<TDocument>
The field. - value
- Type: TItem
The value.
Type Parameters
- TDocument
- The type of the document.
- TItem
- The type of the item.
Return Value
Type:
UpdateDefinition<TDocument>
A combined update.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
UpdateDefinition<TDocument>. 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