Click or drag to resize

FieldsBuilder<TDocument>.ElemMatch<TValue> Method

Returns the first matching element in the array specified by name.

Namespace:  MongoDB.Driver.Builders
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
public FieldsBuilder<TDocument> ElemMatch<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	Func<QueryBuilder<TValue>, IMongoQuery> elementQueryBuilderFunction
)

Parameters

memberExpression
Type: System.Linq.Expressions.Expression<Func<TDocument, IEnumerable<TValue>>>
The member expression.
elementQueryBuilderFunction
Type: System.Func<QueryBuilder<TValue>, IMongoQuery>
The element query builder function.

Type Parameters

TValue
The type of the value.

Return Value

Type: FieldsBuilder<TDocument>
The build (so method calls can be chained).
See Also