Click or drag to resize

SearchDefinitionBuilder<TDocument>.Near<TCoordinates, TField> Method (Expression<Func<TDocument, TField>>, GeoJsonPoint<TCoordinates>, Double, 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<TCoordinates, TField>(
	Expression<Func<TDocument, TField>> path,
	GeoJsonPoint<TCoordinates> origin,
	double pivot,
	SearchScoreDefinition<TDocument> score = null
)
where TCoordinates : GeoJsonCoordinates

Parameters

path
Type: System.Linq.Expressions.Expression<Func<TDocument, TField>>
The indexed field or fields to search.
origin
Type: MongoDB.Driver.GeoJsonObjectModel.GeoJsonPoint<TCoordinates>
The number, date, or geographic point to search near.
pivot
Type: System.Double
The value to user to calculate scores of result documents.
score (Optional)
Type: MongoDB.Driver.Search.SearchScoreDefinition<TDocument>
The score modifier.

Type Parameters

TCoordinates
The type of the coordinates
TField
The type of the fields.

Return Value

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