Click or drag to resize

QueryBuilder<TDocument>.Near<TMember, TCoordinates> Method (Expression<Func<TDocument, TMember>>, 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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax
public IMongoQuery Near<TMember, TCoordinates>(
	Expression<Func<TDocument, TMember>> memberExpression,
	GeoJsonPoint<TCoordinates> point
)
where TCoordinates : GeoJsonCoordinates

Parameters

memberExpression
Type: System.Linq.Expressions.Expression<Func<TDocument, TMember>>
The member expression.
point
Type: MongoDB.Driver.GeoJsonObjectModel.GeoJsonPoint<TCoordinates>
The point.

Type Parameters

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

Return Value

Type: IMongoQuery
An IMongoQuery.
See Also