你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Geometry.Within(Geometry) 方法

定义

确定当前内部 Geometry 是否完全包含在 Azure Cosmos DB 服务中 outerGeometry

public bool Within (Microsoft.Azure.Cosmos.Spatial.Geometry outer);
member this.Within : Microsoft.Azure.Cosmos.Spatial.Geometry -> bool
Public Function Within (outer As Geometry) As Boolean

参数

outer
Geometry

外部 Geometry

返回

true 如果当前内部 Geometry 完全包含在 内,则为 outerGeometry。 否则为 false

示例

Polygon polygon = new Polygon(
       new[]
       {
            new Position(10, 10),
            new Position(30, 10),
            new Position(30, 30),
            new Position(10, 30),
            new Position(10, 10)
       });
var withinQuery = documents.Where(document => document.Location.Within(polygon));

注解

目前,此函数支持 类型的 Point 当前几何图形和 类型 Polygon的外部几何图形。

适用于