Click or drag to resize

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

Creates a push operator.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
Syntax
public UpdateDefinition<TDocument> PushEach<TItem>(
	Expression<Func<TDocument, IEnumerable<TItem>>> field,
	IEnumerable<TItem> values,
	Nullable<int> slice = null,
	Nullable<int> position = null,
	SortDefinition<TItem> sort = null
)

Parameters

field
Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTItem
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