Click or drag to resize

ProjectionDefinitionBuilderTSourceElemMatchTItem Method (ExpressionFuncTSource, IEnumerableTItem, ExpressionFuncTItem, Boolean)

Creates a projection that filters the contents of an array.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
Syntax
public ProjectionDefinition<TSource> ElemMatch<TItem>(
	Expression<Func<TSource, IEnumerable<TItem>>> field,
	Expression<Func<TItem, bool>> filter
)

Parameters

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

Type Parameters

TItem
The type of the item.

Return Value

Type: ProjectionDefinitionTSource
An array filtering projection.
See Also