Click or drag to resize

SearchSpanDefinitionBuilder<TDocument>.Term<TField> Method (Expression<Func<TDocument, TField>>, SearchQueryDefinition)

Creates a span clause that matches a single term.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
public SearchSpanDefinition<TDocument> Term<TField>(
	Expression<Func<TDocument, TField>> path,
	SearchQueryDefinition query
)

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 string to search for.

Type Parameters

TField
The type of the field.

Return Value

Type: SearchSpanDefinition<TDocument>
A term span clause.
See Also