| QueryBuilderTDocumentWithinCircleTMember Method (ExpressionFuncTDocument, TMember, Double, Double, Double, Boolean) | 
 
            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.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
 Syntax
Syntaxpublic IMongoQuery WithinCircle<TMember>(
	Expression<Func<TDocument, TMember>> memberExpression,
	double centerX,
	double centerY,
	double radius,
	bool spherical
)
Public Function WithinCircle(Of TMember) ( 
	memberExpression As Expression(Of Func(Of TDocument, TMember)),
	centerX As Double,
	centerY As Double,
	radius As Double,
	spherical As Boolean
) As IMongoQuery
member WithinCircle : 
        memberExpression : Expression<Func<'TDocument, 'TMember>> * 
        centerX : float * 
        centerY : float * 
        radius : float * 
        spherical : bool -> IMongoQuery 
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.
- spherical
- Type: SystemBoolean
 if set to true [spherical].
Type Parameters
- TMember
- The member type.
Return Value
Type: 
IMongoQueryAn IMongoQuery.
 See Also
See Also