UpdateDefinitionBuilderTDocumentPushEachTItem Method (FieldDefinitionTDocument, IEnumerableTItem, NullableInt32, NullableInt32, SortDefinitionTItem) | 
 
            Creates a push operator.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic UpdateDefinition<TDocument> PushEach<TItem>(
	FieldDefinition<TDocument> field,
	IEnumerable<TItem> values,
	int? slice = null,
	int? position = null,
	SortDefinition<TItem> sort = null
)
Public Function PushEach(Of TItem) ( 
	field As FieldDefinition(Of TDocument),
	values As IEnumerable(Of TItem),
	Optional slice As Integer? = Nothing,
	Optional position As Integer? = Nothing,
	Optional sort As SortDefinition(Of TItem) = Nothing
) As UpdateDefinition(Of TDocument)
member PushEach : 
        field : FieldDefinition<'TDocument> * 
        values : IEnumerable<'TItem> * 
        ?slice : Nullable<int> * 
        ?position : Nullable<int> * 
        ?sort : SortDefinition<'TItem> 
(* Defaults:
        let _slice = defaultArg slice null
        let _position = defaultArg position null
        let _sort = defaultArg sort null
*)
-> UpdateDefinition<'TDocument> 
Parameters
- field
 - Type: MongoDB.DriverFieldDefinitionTDocument
The field. - values
 - Type: System.Collections.GenericIEnumerableTItem
The values. - slice (Optional)
 - Type: SystemNullableInt32
The slice. - position (Optional)
 - Type: SystemNullableInt32
The position. - sort (Optional)
 - Type: MongoDB.DriverSortDefinitionTItem
The sort. 
Type Parameters
- TItem
 - The type of the item.
 
Return Value
Type: 
UpdateDefinitionTDocumentA push operator.
See Also