SpatialEdmFunctions.GeometryFromGml 方法

定义

创建一个 DbFunctionExpression,它调用规范 'GeometryFromGml' 函数。

重载

GeometryFromGml(DbExpression)

创建一个 DbFunctionExpression,它使用指定的参数(该参数必须具有字符串结果类型)调用规范 'GeometryFromGml' 函数。 表达式的结果类型为 Edm.Geometry。

GeometryFromGml(DbExpression, DbExpression)

创建使用指定参数调用规范“GeometryFromGml”函数的 DbFunctionExpressiongeometryMarkup 的结果类型必须是字符串类型,而 coordinateSystemId 的必须是整数数值类型。 表达式的结果类型为 Edm.Geometry。

GeometryFromGml(DbExpression)

创建一个 DbFunctionExpression,它使用指定的参数(该参数必须具有字符串结果类型)调用规范 'GeometryFromGml' 函数。 表达式的结果类型为 Edm.Geometry。

public:
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ GeometryFromGml(System::Data::Common::CommandTrees::DbExpression ^ geometryMarkup);
public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromGml (System.Data.Common.CommandTrees.DbExpression geometryMarkup);
static member GeometryFromGml : System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
Public Function GeometryFromGml (geometryMarkup As DbExpression) As DbFunctionExpression

参数

geometryMarkup
DbExpression

提供几何图形值的地理标记语言 (GML) 表示形式的表达式。

返回

新 DbFunctionExpression 基于具有基础提供程序的默认坐标系统 ID (SRID) 的指定值,返回新的几何图形值。

例外

geometryMarkup

geometryMarkup

适用于

GeometryFromGml(DbExpression, DbExpression)

创建使用指定参数调用规范“GeometryFromGml”函数的 DbFunctionExpressiongeometryMarkup 的结果类型必须是字符串类型,而 coordinateSystemId 的必须是整数数值类型。 表达式的结果类型为 Edm.Geometry。

public:
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ GeometryFromGml(System::Data::Common::CommandTrees::DbExpression ^ geometryMarkup, System::Data::Common::CommandTrees::DbExpression ^ coordinateSystemId);
public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromGml (System.Data.Common.CommandTrees.DbExpression geometryMarkup, System.Data.Common.CommandTrees.DbExpression coordinateSystemId);
static member GeometryFromGml : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
Public Function GeometryFromGml (geometryMarkup As DbExpression, coordinateSystemId As DbExpression) As DbFunctionExpression

参数

geometryMarkup
DbExpression

提供几何图形值的地理标记语言 (GML) 表示形式的表达式。

coordinateSystemId
DbExpression

提供几何图形值的坐标系统的坐标系统 ID (SRID) 的表达式。

返回

新 DbFunctionExpression 基于指定的值返回新的几何图形值。

例外

geometryMarkup coordinateSystemId

geometryMarkup coordinateSystemId

适用于