SpatialEdmFunctions.PointAt(DbExpression, DbExpression) 方法

定义

创建一个 DbFunctionExpression,它使用指定的参数调用规范形式的 'PointAt' 函数。 第一个参数必须具有 Edm.Geography 或 Edm.Geometry 结果类型。 第二个参数必须具有整数数值结果类型。 该表达式的结果类型与 spatialValue 的结果类型相同。

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

参数

spatialValue
DbExpression

一个表达式,指定空间行字符串的值。

indexValue
DbExpression

一个表达式,在行字符串中指定要检索的点的位置。

返回

一个新的 DbFunctionExpression,它返回 indexValue 中的位置 spatialValue 的点的数目或返回 null(如果 spatialValue 不是行字符串)。

例外

spatialValue indexValue

适用于