Share via


SpatialEdmFunctions.InteriorRingAt(DbExpression, DbExpression) 方法

定义

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

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ InteriorRingAt(System::Data::Common::CommandTrees::DbExpression ^ geometryValue, System::Data::Common::CommandTrees::DbExpression ^ indexValue);
public static System.Data.Common.CommandTrees.DbFunctionExpression InteriorRingAt (this System.Data.Common.CommandTrees.DbExpression geometryValue, System.Data.Common.CommandTrees.DbExpression indexValue);
static member InteriorRingAt : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function InteriorRingAt (geometryValue As DbExpression, indexValue As DbExpression) As DbFunctionExpression

参数

geometryValue
DbExpression

几何值。

indexValue
DbExpression

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

返回

一个新的 DbFunctionExpression,它返回位于 indexValue 中位置 geometryValue 处的内环或 null(如果 geometryValue 不是多边形)。

例外

geometryValue indexValue

适用于