DbSpatialServices.AsGml 方法 (DbGeography)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
生成此 DbGeography 值的地理标记语言 (GML) 表示形式。
命名空间: System.Data.Entity.Spatial
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId := "Gml")> _
Public MustOverride Function AsGml ( _
geographyValue As DbGeography _
) As String
用法
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim returnValue As String
returnValue = instance.AsGml(geographyValue)
[SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gml")]
public abstract string AsGml(
DbGeography geographyValue
)
[SuppressMessageAttribute(L"Microsoft.Naming", L"CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = L"Gml")]
public:
virtual String^ AsGml(
DbGeography^ geographyValue
) abstract
[<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gml")>]
abstract AsGml :
geographyValue:DbGeography -> string
public abstract function AsGml(
geographyValue : DbGeography
) : String
参数
- geographyValue
类型:System.Data.Entity.Spatial.DbGeography
应生成 GML 的地理值。
返回值
类型:System.String
包含此 DbGeography 值的 GML 表示形式的字符串。
异常
例外 | 条件 |
---|---|
ArgumentNullException | geographyValue 为 null。 |
ArgumentException | geographyValue 与此空间服务实现不兼容。 |