Click or drag to resize

QueryTDocumentWithinCircleTMember Method (ExpressionFuncTDocument, TMember, Double, Double, Double)

Tests that the value of the named element is within a circle (see $within and $center).

Namespace:  MongoDB.Driver.Builders
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public static IMongoQuery WithinCircle<TMember>(
	Expression<Func<TDocument, TMember>> memberExpression,
	double centerX,
	double centerY,
	double radius
)

Parameters

memberExpression
Type: System.Linq.ExpressionsExpressionFuncTDocument, TMember
The member expression representing the element to test.
centerX
Type: SystemDouble
The x coordinate of the origin.
centerY
Type: SystemDouble
The y coordinate of the origin.
radius
Type: SystemDouble
The radius of the circle.

Type Parameters

TMember
The member type.

Return Value

Type: IMongoQuery
An IMongoQuery.
See Also