Click or drag to resize

UpdateDefinitionBuilder<TDocument>.Push<TItem> Method (FieldDefinition<TDocument>, TItem)

Creates a push operator.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
public UpdateDefinition<TDocument> Push<TItem>(
	FieldDefinition<TDocument> field,
	TItem value
)

Parameters

field
Type: MongoDB.Driver.FieldDefinition<TDocument>
The field.
value
Type: TItem
The value.

Type Parameters

TItem
The type of the item.

Return Value

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