Click or drag to resize

UpdateDefinitionBuilder<TDocument>.PushEach<TItem> Method (FieldDefinition<TDocument>, IEnumerable<TItem>, Nullable<Int32>, Nullable<Int32>, SortDefinition<TItem>)

Creates a push operator.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
public UpdateDefinition<TDocument> PushEach<TItem>(
	FieldDefinition<TDocument> field,
	IEnumerable<TItem> values,
	int? slice = null,
	int? position = null,
	SortDefinition<TItem> sort = null
)

Parameters

field
Type: MongoDB.Driver.FieldDefinition<TDocument>
The field.
values
Type: System.Collections.Generic.IEnumerable<TItem>
The values.
slice (Optional)
Type: System.Nullable<Int32>
The slice.
position (Optional)
Type: System.Nullable<Int32>
The position.
sort (Optional)
Type: MongoDB.Driver.SortDefinition<TItem>
The sort.

Type Parameters

TItem
The type of the item.

Return Value

Type: UpdateDefinition<TDocument>
A push operator.
See Also