Click or drag to resize

SearchDefinitionBuilder<TDocument>.Near<TField> Method (Expression<Func<TDocument, TField>>, Int32, Int32, SearchScoreDefinition<TDocument>)

Creates a search definition that supports querying and scoring numeric and date values.

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

Parameters

path
Type: System.Linq.Expressions.Expression<Func<TDocument, TField>>
The indexed field or fields to search.
origin
Type: System.Int32
The number, date, or geographic point to search near.
pivot
Type: System.Int32
The value to use to calculate scores of result documents.
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 near search definition.
See Also