Click or drag to resize
Query.Within<TCoordinates> Method
Tests that the value of the named element is within the specified geometry (see $within).

Namespace: MongoDB.Driver.Builders
Assembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.3.0
Syntax
public static IMongoQuery Within<TCoordinates>(
	string name,
	GeoJsonPolygon<TCoordinates> polygon
)
where TCoordinates : GeoJsonCoordinates

Parameters

name
Type: System.String
The name of the element to test.
polygon
Type: MongoDB.Driver.GeoJsonObjectModel.GeoJsonPolygon<TCoordinates>
The polygon.

Type Parameters

TCoordinates
The type of the coordinates.

Return Value

Type: IMongoQuery
An IMongoQuery.
See Also