| QueryBuilderTDocumentNearTMember, TCoordinates Method (ExpressionFuncTDocument, TMember, GeoJsonPointTCoordinates, Double, Boolean) | 
 
            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.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
 Syntax
Syntaxpublic IMongoQuery Near<TMember, TCoordinates>(
	Expression<Func<TDocument, TMember>> memberExpression,
	GeoJsonPoint<TCoordinates> point,
	double maxDistance,
	bool spherical
)
where TCoordinates : GeoJsonCoordinates
Public Function Near(Of TMember, TCoordinates As GeoJsonCoordinates) ( 
	memberExpression As Expression(Of Func(Of TDocument, TMember)),
	point As GeoJsonPoint(Of TCoordinates),
	maxDistance As Double,
	spherical As Boolean
) As IMongoQuery
member Near : 
        memberExpression : Expression<Func<'TDocument, 'TMember>> * 
        point : GeoJsonPoint<'TCoordinates> * 
        maxDistance : float * 
        spherical : bool -> IMongoQuery  when 'TCoordinates : GeoJsonCoordinates
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, TMember
 The member expression.
- point
- Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonPointTCoordinates
 The point.
- maxDistance
- Type: SystemDouble
 The max distance.
- spherical
- Type: SystemBoolean
 if set to true then the query will be translated to $nearSphere.
Type Parameters
- TMember
- The member type.
- TCoordinates
- The type of the coordinates.
Return Value
Type: 
IMongoQueryAn IMongoQuery.
 See Also
See Also