Click or drag to resize

FilterDefinitionBuilderTDocumentNearTCoordinates Method (ExpressionFuncTDocument, Object, GeoJsonPointTCoordinates, NullableDouble, NullableDouble)

Creates a near filter.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
public FilterDefinition<TDocument> Near<TCoordinates>(
	Expression<Func<TDocument, Object>> field,
	GeoJsonPoint<TCoordinates> point,
	Nullable<double> maxDistance = null,
	Nullable<double> minDistance = null
)
where TCoordinates : GeoJsonCoordinates

Parameters

field
Type: System.Linq.ExpressionsExpressionFuncTDocument, Object
The field.
point
Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonPointTCoordinates
The geometry.
maxDistance (Optional)
Type: SystemNullableDouble
The maximum distance.
minDistance (Optional)
Type: SystemNullableDouble
The minimum distance.

Type Parameters

TCoordinates
The type of the coordinates.

Return Value

Type: FilterDefinitionTDocument
A near filter.
See Also