Method WithinPolygon
WithinPolygon<TMember>(Expression<Func<TDocument, TMember>>, double[,])
Tests that the value of the named element is within a polygon (see $within and $polygon).
public static IMongoQuery WithinPolygon<TMember>(Expression<Func<TDocument, TMember>> memberExpression, double[,] points)
Parameters
memberExpressionExpression<Func<TDocument, TMember>>The member expression representing the element to test.
pointsdouble[,]An array of points that defines the polygon (the second dimension must be of length 2).
Returns
- IMongoQuery
An IMongoQuery.
Type Parameters
TMemberThe member type.