Click or drag to resize

FilterDefinitionBuilderTDocumentNearSphere Method (ExpressionFuncTDocument, Object, Double, Double, NullableDouble, NullableDouble)

Creates a near sphere filter.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
public FilterDefinition<TDocument> NearSphere(
	Expression<Func<TDocument, Object>> field,
	double x,
	double y,
	Nullable<double> maxDistance = null,
	Nullable<double> minDistance = null
)

Parameters

field
Type: System.Linq.ExpressionsExpressionFuncTDocument, Object
The field.
x
Type: SystemDouble
The x.
y
Type: SystemDouble
The y.
maxDistance (Optional)
Type: SystemNullableDouble
The maximum distance.
minDistance (Optional)
Type: SystemNullableDouble
The minimum distance.

Return Value

Type: FilterDefinitionTDocument
A near sphere filter.
See Also