共用方式為


SpatialEdmFunctions.GeometryFromGml 方法

定義

建立會叫用標準 『GeometryFromGml』 函式的 DbFunctionExpression

多載

GeometryFromGml(DbExpression)

使用指定的自變數,建立叫用標準 『GeometryFromGml』 函式的 DbFunctionExpression,該自變數必須具有字串結果型別。 表達式的結果類型為Edm.Geometry。

GeometryFromGml(DbExpression, DbExpression)

建立 DbFunctionExpression,以使用指定的自變數叫用標準 'GeometryFromGml' 函式。 geometryMarkup 必須有字串結果類型,而 coordinateSystemId 必須有整數數值結果類型。 表達式的結果類型為Edm.Geometry。

GeometryFromGml(DbExpression)

使用指定的自變數,建立叫用標準 『GeometryFromGml』 函式的 DbFunctionExpression,該自變數必須具有字串結果型別。 表達式的結果類型為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

表達式,提供幾何值的 Geography 標記語言 (GML) 表示法。

傳回

新的 DbFunctionExpression,會根據基礎提供者的預設座標系統識別碼 (SRID) 指定值,傳回新的幾何值。

例外狀況

geometryMarkup

geometryMarkup

適用於

GeometryFromGml(DbExpression, DbExpression)

建立 DbFunctionExpression,以使用指定的自變數叫用標準 'GeometryFromGml' 函式。 geometryMarkup 必須有字串結果類型,而 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

表達式,提供幾何值的 Geography 標記語言 (GML) 表示法。

coordinateSystemId
DbExpression

表達式,提供幾何值座標系統的座標系統標識碼 (SRID)。

傳回

根據指定值傳回新幾何值的新 DbFunctionExpression。

例外狀況

geometryMarkup coordinateSystemId

geometryMarkup coordinateSystemId

適用於