Click or drag to resize

UpdateDefinitionBuilderTDocumentPullFilterTItem Method (ExpressionFuncTDocument, IEnumerableTItem, ExpressionFuncTItem, Boolean)

Creates a pull operator.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax
public UpdateDefinition<TDocument> PullFilter<TItem>(
	Expression<Func<TDocument, IEnumerable<TItem>>> field,
	Expression<Func<TItem, bool>> filter
)

Parameters

field
Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTItem
The field.
filter
Type: System.Linq.ExpressionsExpressionFuncTItem, Boolean
The filter.

Type Parameters

TItem
The type of the item.

Return Value

Type: UpdateDefinitionTDocument
A pull operator.
See Also