QueryTDocumentNearTMember, TCoordinates Method (ExpressionFuncTDocument, TMember, GeoJsonPointTCoordinates, Double) | 
 
            Tests that the value of the named element is near some location (see $near).
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic static IMongoQuery Near<TMember, TCoordinates>(
	Expression<Func<TDocument, TMember>> memberExpression,
	GeoJsonPoint<TCoordinates> point,
	double maxDistance
)
where TCoordinates : GeoJsonCoordinates
Public Shared Function Near(Of TMember, TCoordinates As GeoJsonCoordinates) ( 
	memberExpression As Expression(Of Func(Of TDocument, TMember)),
	point As GeoJsonPoint(Of TCoordinates),
	maxDistance As Double
) As IMongoQuery
static member Near : 
        memberExpression : Expression<Func<'TDocument, 'TMember>> * 
        point : GeoJsonPoint<'TCoordinates> * 
        maxDistance : float -> IMongoQuery  when 'TCoordinates : GeoJsonCoordinates
Parameters
- memberExpression
 - Type: System.Linq.ExpressionsExpressionFuncTDocument, TMember
The member expression representing the element to test. - point
 - Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonPointTCoordinates
The point. - maxDistance
 - Type: SystemDouble
The max distance. 
Type Parameters
- TMember
 - The member type.
 - TCoordinates
 - The type of the coordinates.
 
Return Value
Type: 
IMongoQueryAn IMongoQuery.
See Also