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.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
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