Click or drag to resize

SearchDefinitionBuilder<TDocument>.Near<TField> Method (Expression<Func<TDocument, TField>>, Int64, Int64, 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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
public SearchDefinition<TDocument> Near<TField>(
	Expression<Func<TDocument, TField>> path,
	long origin,
	long 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.Int64
The number, date, or geographic point to search near.
pivot
Type: System.Int64
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