DbSpatialServices.GeometryFromGml 方法 (String, Int32)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
基于指定的地理标记语言 (GML) 值和坐标系标识符 (SRID) 创建新的 DbGeometry 值。
命名空间: System.Data.Entity.Spatial
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId := "Gml")> _
Public MustOverride Function GeometryFromGml ( _
geometryMarkup As String, _
coordinateSystemId As Integer _
) As DbGeometry
用法
Dim instance As DbSpatialServices
Dim geometryMarkup As String
Dim coordinateSystemId As Integer
Dim returnValue As DbGeometry
returnValue = instance.GeometryFromGml(geometryMarkup, _
coordinateSystemId)
[SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gml")]
public abstract DbGeometry GeometryFromGml(
string geometryMarkup,
int coordinateSystemId
)
[SuppressMessageAttribute(L"Microsoft.Naming", L"CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = L"Gml")]
public:
virtual DbGeometry^ GeometryFromGml(
String^ geometryMarkup,
int coordinateSystemId
) abstract
[<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gml")>]
abstract GeometryFromGml :
geometryMarkup:string *
coordinateSystemId:int -> DbGeometry
public abstract function GeometryFromGml(
geometryMarkup : String,
coordinateSystemId : int
) : DbGeometry
参数
- geometryMarkup
类型:System.String
包含几何值的地理标记语言 (GML) 表示形式的字符串。
- coordinateSystemId
类型:System.Int32
新 DbGeometry 值应使用的坐标系标识符。
返回值
类型:System.Data.Entity.Spatial.DbGeometry
一个新 DbGeometry 值,由 GML 值使用指定的坐标系标识符 (SRID) 进行定义。