Click or drag to resize
UpdateDefinitionBuilder<TDocument>.Pull<TItem> Method (Expression<Func<TDocument, IEnumerable<TItem>>>, TItem)
Creates a pull operator.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.4.1
Syntax
public UpdateDefinition<TDocument> Pull<TItem>(
	Expression<Func<TDocument, IEnumerable<TItem>>> field,
	TItem value
)

Parameters

field
Type: System.Linq.Expressions.Expression<Func<TDocument, IEnumerable<TItem>>>
The field.
value
Type: TItem
The value.

Type Parameters

TItem
The type of the item.

Return Value

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