Click or drag to resize

Query<TDocument>.Near<TMember, TCoordinates> Method (Expression<Func<TDocument, TMember>>, GeoJsonPoint<TCoordinates>, 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.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
public static IMongoQuery Near<TMember, TCoordinates>(
	Expression<Func<TDocument, TMember>> memberExpression,
	GeoJsonPoint<TCoordinates> point,
	double maxDistance,
	bool spherical
)
where TCoordinates : GeoJsonCoordinates

Parameters

memberExpression
Type: System.Linq.Expressions.Expression<Func<TDocument, TMember>>
The member expression representing the element to test.
point
Type: MongoDB.Driver.GeoJsonObjectModel.GeoJsonPoint<TCoordinates>
The point.
maxDistance
Type: System.Double
The max distance.
spherical
Type: System.Boolean
if set to true [spherical].

Type Parameters

TMember
The member type.
TCoordinates
The type of the coordinates.

Return Value

Type: IMongoQuery
An IMongoQuery.
See Also