Click or drag to resize

UpdateDefinitionBuilderTDocumentPushEachTItem Method (FieldDefinitionTDocument, IEnumerableTItem, NullableInt32, NullableInt32, SortDefinitionTItem)

Creates a push operator.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax
public UpdateDefinition<TDocument> PushEach<TItem>(
	FieldDefinition<TDocument> field,
	IEnumerable<TItem> values,
	Nullable<int> slice = null,
	Nullable<int> position = null,
	SortDefinition<TItem> sort = null
)

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: UpdateDefinitionTDocument
A push operator.
See Also