Click or drag to resize

SearchDefinitionBuilderTDocumentNear Method (SearchPathDefinitionTDocument, Int32, Int32, SearchScoreDefinitionTDocument)

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.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public SearchDefinition<TDocument> Near(
	SearchPathDefinition<TDocument> path,
	int origin,
	int pivot,
	SearchScoreDefinition<TDocument> score = null
)

Parameters

path
Type: MongoDB.Driver.SearchSearchPathDefinitionTDocument
The indexed field or fields to search.
origin
Type: SystemInt32
The number, date, or geographic point to search near.
pivot
Type: SystemInt32
The value to use to calculate scores of result documents.
score (Optional)
Type: MongoDB.Driver.SearchSearchScoreDefinitionTDocument
The score modifier.

Return Value

Type: SearchDefinitionTDocument
A near search definition.
See Also