QueryNear Method (String, Double, 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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public static IMongoQuery Near(
string name,
double x,
double y
)
Public Shared Function Near (
name As String,
x As Double,
y As Double
) As IMongoQuery
static member Near :
name : string *
x : float *
y : float -> 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.
Return Value
Type:
IMongoQueryAn IMongoQuery.
See Also