Click or drag to resize

Query.Near<TCoordinates> Method (String, GeoJsonPoint<TCoordinates>)

Tests that the value of the named element is near a point (see $near).

Namespace:  MongoDB.Driver.Builders
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
public static IMongoQuery Near<TCoordinates>(
	string name,
	GeoJsonPoint<TCoordinates> point
)
where TCoordinates : GeoJsonCoordinates

Parameters

name
Type: System.String
The name of the element to test.
point
Type: MongoDB.Driver.GeoJsonObjectModel.GeoJsonPoint<TCoordinates>
The point.

Type Parameters

TCoordinates
The type of the coordinates.

Return Value

Type: IMongoQuery
An IMongoQuery.
See Also