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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public static FieldsBuilder ElemMatch(
string name,
IMongoQuery query
)
Public Shared Function ElemMatch (
name As String,
query As IMongoQuery
) As FieldsBuilder
static member ElemMatch :
name : string *
query : IMongoQuery -> FieldsBuilder
Parameters
- name
- Type: SystemString
The name. - query
- Type: MongoDB.DriverIMongoQuery
The query.
Return Value
Type:
FieldsBuilderThe build (so method calls can be chained).
See Also