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
Syntaxpublic SearchDefinition<TDocument> Near<TField>(
	Expression<Func<TDocument, TField>> path,
	DateTime origin,
	long pivot,
	SearchScoreDefinition<TDocument> score = null
)
Public Function Near(Of TField) ( 
	path As Expression(Of Func(Of TDocument, TField)),
	origin As DateTime,
	pivot As Long,
	Optional score As SearchScoreDefinition(Of TDocument) = Nothing
) As SearchDefinition(Of TDocument)
member Near : 
        path : Expression<Func<'TDocument, 'TField>> * 
        origin : DateTime * 
        pivot : int64 * 
        ?score : SearchScoreDefinition<'TDocument> 
(* Defaults:
        let _score = defaultArg score null
*)
-> SearchDefinition<'TDocument> 
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: 
SearchDefinitionTDocumentA near search definition.
See Also