Click or drag to resize

SearchDefinitionBuilderTDocumentEqualsTField Method (FieldDefinitionTDocument, TField, TField, SearchScoreDefinitionTDocument)

Creates a search definition that queries for documents where an indexed field is equal to the specified value. Supported value types are boolean, numeric, ObjectId and date.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax
public SearchDefinition<TDocument> Equals<TField>(
	FieldDefinition<TDocument, TField> path,
	TField value,
	SearchScoreDefinition<TDocument> score = null
)
where TField : struct, new(), IComparable<TField>

Parameters

path
Type: MongoDB.DriverFieldDefinitionTDocument, TField
The indexed field to search.
value
Type: TField
The value to query for.
score (Optional)
Type: MongoDB.Driver.SearchSearchScoreDefinitionTDocument
The score modifier.

Type Parameters

TField
The type of the field.

Return Value

Type: SearchDefinitionTDocument
An equality search definition.
See Also