SearchDefinitionBuilderTDocumentEqualsTField Method (ExpressionFuncTDocument, 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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public SearchDefinition<TDocument> Equals<TField>(
Expression<Func<TDocument, TField>> path,
TField value,
SearchScoreDefinition<TDocument> score = null
)
where TField : struct, new(), IComparable<TField>
Public Function Equals(Of TField As {Structure, New, IComparable(Of TField)}) (
path As Expression(Of Func(Of TDocument, TField)),
value As TField,
Optional score As SearchScoreDefinition(Of TDocument) = Nothing
) As SearchDefinition(Of TDocument)
member Equals :
path : Expression<Func<'TDocument, 'TField>> *
value : 'TField *
?score : SearchScoreDefinition<'TDocument>
(* Defaults:
let _score = defaultArg score null
*)
-> SearchDefinition<'TDocument> when 'TField : struct, new() and IComparable<'TField>
Parameters
- path
- Type: System.Linq.ExpressionsExpressionFuncTDocument, 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:
SearchDefinitionTDocumentAn equality search definition.
See Also