Click or drag to resize

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

Creates a near filter.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax
public FilterDefinition<TDocument> Near(
	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 filter.
See Also