SpatialEdmFunctions.InteriorRingAt(DbExpression, DbExpression) 方法

定义

创建一个 DbFunctionExpression,它使用指定的参数调用规范形式的 'InteriorRingAt' 函数。 第一个参数必须具有 Edm.Geometry 结果类型。 第二个参数必须具有一个整数数值结果类型。 表达式的结果类型为 Edm.Geometry。

public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression InteriorRingAt (this System.Data.Entity.Core.Common.CommandTrees.DbExpression geometryValue, System.Data.Entity.Core.Common.CommandTrees.DbExpression indexValue);
static member InteriorRingAt : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function InteriorRingAt (geometryValue As DbExpression, indexValue As DbExpression) As DbFunctionExpression

参数

geometryValue
DbExpression

几何值。

indexValue
DbExpression

一个表达式,在多边形中指定要检索的内环的位置。

返回

一个新的 DbFunctionExpression,返回 geometryValue 中位置 indexValue 处的内环;如果 geometryValue 不是多边形,则返回 null。

适用于