Click or drag to resize

MongoCollectionGeoNearAsTDocument Method (IMongoQuery, Double, Double, Int32)

Note: This API is now obsolete.

Runs a GeoNear command on this collection.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
[ObsoleteAttribute("Use the overload of GeoNearAs that has a GeoNearArgs parameter instead.")]
public virtual GeoNearResult<TDocument> GeoNearAs<TDocument>(
	IMongoQuery query,
	double x,
	double y,
	int limit
)

Parameters

query
Type: MongoDB.DriverIMongoQuery
The query (usually a QueryDocument or constructed using the Query builder).
x
Type: SystemDouble
The x coordinate of the starting location.
y
Type: SystemDouble
The y coordinate of the starting location.
limit
Type: SystemInt32
The maximum number of results returned.

Type Parameters

TDocument
The type to deserialize the documents as.

Return Value

Type: GeoNearResultTDocument
A GeoNearResultTDocument.
See Also