Click or drag to resize

SearchDefinitionBuilder<TDocument>.Phrase<TField> Method (Expression<Func<TDocument, TField>>, SearchQueryDefinition, Nullable<Int32>, SearchScoreDefinition<TDocument>)

Creates a search definition that performs search for documents containing an ordered sequence of terms.

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

Parameters

path
Type: System.Linq.Expressions.Expression<Func<TDocument, TField>>
The indexed field or fields to search.
query
Type: MongoDB.Driver.Search.SearchQueryDefinition
The string or strings to search for.
slop (Optional)
Type: System.Nullable<Int32>
The allowable distance between words in the query phrase.
score (Optional)
Type: MongoDB.Driver.Search.SearchScoreDefinition<TDocument>
The score modifier.

Type Parameters

TField
The type of the field.

Return Value

Type: SearchDefinition<TDocument>
A phrase search definition.
See Also