Click or drag to resize

ProjectionDefinitionBuilder<TSource>.ElemMatch<TItem> Method (FieldDefinition<TSource>, FilterDefinition<TItem>)

Creates a projection that filters the contents of an array.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
public ProjectionDefinition<TSource> ElemMatch<TItem>(
	FieldDefinition<TSource> field,
	FilterDefinition<TItem> filter
)

Parameters

field
Type: MongoDB.Driver.FieldDefinition<TSource>
The field.
filter
Type: MongoDB.Driver.FilterDefinition<TItem>
The filter.

Type Parameters

TItem
The type of the item.

Return Value

Type: ProjectionDefinition<TSource>
An array filtering projection.
See Also