SpatialEdmFunctions.GeometryFromGml 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GeometryFromGml(DbExpression) |
创建一个 DbFunctionExpression,它使用指定的参数(该参数必须具有字符串结果类型)调用规范 'GeometryFromGml' 函数。 表达式的结果类型为 Edm.Geometry。 |
GeometryFromGml(DbExpression, DbExpression) |
创建使用指定参数调用规范“GeometryFromGml”函数的 DbFunctionExpression。 geometryMarkup 必须具有字符串结果类型,而坐标SystemId 必须具有整数数值结果类型。 表达式的结果类型为 Edm.Geometry。 |
GeometryFromGml(DbExpression)
创建一个 DbFunctionExpression,它使用指定的参数(该参数必须具有字符串结果类型)调用规范 'GeometryFromGml' 函数。 表达式的结果类型为 Edm.Geometry。
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification="Abbreviation more meaningful than what it stands for", MessageId="Gml")]
public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression GeometryFromGml (System.Data.Entity.Core.Common.CommandTrees.DbExpression geometryMarkup);
static member GeometryFromGml : System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Public Function GeometryFromGml (geometryMarkup As DbExpression) As DbFunctionExpression
参数
- geometryMarkup
- DbExpression
提供几何图形值的地理标记语言 (GML) 表示形式的表达式。
返回
新 DbFunctionExpression 基于具有基础提供程序的默认坐标系统 ID (SRID) 的指定值,返回新的几何图形值。
- 属性
适用于
GeometryFromGml(DbExpression, DbExpression)
创建使用指定参数调用规范“GeometryFromGml”函数的 DbFunctionExpression。 geometryMarkup 必须具有字符串结果类型,而坐标SystemId 必须具有整数数值结果类型。 表达式的结果类型为 Edm.Geometry。
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification="Abbreviation more meaningful than what it stands for", MessageId="Gml")]
public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression GeometryFromGml (System.Data.Entity.Core.Common.CommandTrees.DbExpression geometryMarkup, System.Data.Entity.Core.Common.CommandTrees.DbExpression coordinateSystemId);
static member GeometryFromGml : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Public Function GeometryFromGml (geometryMarkup As DbExpression, coordinateSystemId As DbExpression) As DbFunctionExpression
参数
- geometryMarkup
- DbExpression
提供几何图形值的地理标记语言 (GML) 表示形式的表达式。
- coordinateSystemId
- DbExpression
提供几何图形值的坐标系统的坐标系统 ID (SRID) 的表达式。
返回
新 DbFunctionExpression 基于指定的值返回新的几何图形值。
- 属性