| QueryNear Method (String, Double, Double, 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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
Syntaxpublic static IMongoQuery Near(
	string name,
	double x,
	double y,
	double maxDistance,
	bool spherical
)
Public Shared Function Near ( 
	name As String,
	x As Double,
	y As Double,
	maxDistance As Double,
	spherical As Boolean
) As IMongoQuery
static member Near : 
        name : string * 
        x : float * 
        y : float * 
        maxDistance : float * 
        spherical : bool -> IMongoQuery 
Parameters
- name
- Type: SystemString
 The name of the element to test.
- x
- Type: SystemDouble
 The x value of the origin.
- y
- Type: SystemDouble
 The y value of the origin.
- maxDistance
- Type: SystemDouble
 The max distance.
- spherical
- Type: SystemBoolean
 if set to true then the query will be translated to $nearSphere.
Return Value
Type: 
IMongoQueryAn IMongoQuery.
 See Also
See Also