Table of Contents

Method WithinPolygon

Namespace
MongoDB.Driver.Builders
Assembly
MongoDB.Driver.Legacy.dll

WithinPolygon<TMember>(Expression<Func<TDocument, TMember>>, double[,])

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

public IMongoQuery WithinPolygon<TMember>(Expression<Func<TDocument, TMember>> memberExpression, double[,] points)

Parameters

memberExpression Expression<Func<TDocument, TMember>>

The member expression representing the element to test.

points double[,]

An array of points that defines the polygon (the second dimension must be of length 2).

Returns

IMongoQuery

An IMongoQuery.

Type Parameters

TMember

The member type.