Click or drag to resize

SearchDefinitionBuilderTDocumentTextTField Method (ExpressionFuncTDocument, TField, SearchQueryDefinition, String, SearchScoreDefinitionTDocument)

Creates a search definition that performs full-text search with synonyms using the analyzer specified in the index configuration.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax
public SearchDefinition<TDocument> Text<TField>(
	Expression<Func<TDocument, TField>> path,
	SearchQueryDefinition query,
	string synonyms,
	SearchScoreDefinition<TDocument> score = null
)

Parameters

path
Type: System.Linq.ExpressionsExpressionFuncTDocument, TField
The indexed field or field to search.
query
Type: MongoDB.Driver.SearchSearchQueryDefinition
The string or strings to search for.
synonyms
Type: SystemString
The name of the synonym mapping definition in the index definition
score (Optional)
Type: MongoDB.Driver.SearchSearchScoreDefinitionTDocument
The score modifier.

Type Parameters

TField
The type of the field.

Return Value

Type: SearchDefinitionTDocument
A text search definition.
See Also