| QueryTDocumentWithinTMember, TCoordinates Method | 
            Tests that the value of the named element is within the specified geometry (see $within).
            
 
Namespace: MongoDB.Driver.BuildersAssembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.1.0
 Syntax
Syntaxpublic static IMongoQuery Within<TMember, TCoordinates>(
	Expression<Func<TDocument, TMember>> memberExpression,
	GeoJsonPolygon<TCoordinates> polygon
)
where TCoordinates : GeoJsonCoordinates
Public Shared Function Within(Of TMember, TCoordinates As GeoJsonCoordinates) ( 
	memberExpression As Expression(Of Func(Of TDocument, TMember)),
	polygon As GeoJsonPolygon(Of TCoordinates)
) As IMongoQuery
static member Within : 
        memberExpression : Expression<Func<'TDocument, 'TMember>> * 
        polygon : GeoJsonPolygon<'TCoordinates> -> IMongoQuery  when 'TCoordinates : GeoJsonCoordinates
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, TMember
 The member expression.
- polygon
- Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonPolygonTCoordinates
 The polygon.
Type Parameters
- TMember
- The type of the member.
- TCoordinates
- The type of the coordinates.
Return Value
Type: 
IMongoQueryAn IMongoQuery.
 See Also
See Also