Click or drag to resize

SearchDefinitionBuilderTDocumentNearTField Method (ExpressionFuncTDocument, TField, DateTime, Int64, 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<TField>(
	Expression<Func<TDocument, TField>> path,
	DateTime origin,
	long pivot,
	SearchScoreDefinition<TDocument> score = null
)

Parameters

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

Type Parameters

TField
The type of the field.

Return Value

Type: SearchDefinitionTDocument
A near search definition.
See Also