DbGeography.FromGml-Methode (String, Int32)
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Erstellt einen neuen DbGeography-Wert auf Grundlage des angegebenen GML-Werts (Geography Markup Language) und Koordinatensystem-ID (SRID).
Namespace: System.Data.Entity.Spatial
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId := "Gml")> _
Public Shared Function FromGml ( _
geographyMarkup As String, _
coordinateSystemId As Integer _
) As DbGeography
'Usage
Dim geographyMarkup As String
Dim coordinateSystemId As Integer
Dim returnValue As DbGeography
returnValue = DbGeography.FromGml(geographyMarkup, _
coordinateSystemId)
[SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gml")]
public static DbGeography FromGml(
string geographyMarkup,
int coordinateSystemId
)
[SuppressMessageAttribute(L"Microsoft.Naming", L"CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = L"Gml")]
public:
static DbGeography^ FromGml(
String^ geographyMarkup,
int coordinateSystemId
)
[<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gml")>]
static member FromGml :
geographyMarkup:string *
coordinateSystemId:int -> DbGeography
public static function FromGml(
geographyMarkup : String,
coordinateSystemId : int
) : DbGeography
Parameter
- geographyMarkup
Typ: System.String
Eine Zeichenfolge, die eine Darstellung der Geografie-Markupsprache (GML) des Geografiewerts enthält.
- coordinateSystemId
Typ: System.Int32
Der Bezeichner des Koordinatensystems, das der neue DbGeography-Wert verwenden soll.
Rückgabewert
Typ: System.Data.Entity.Spatial.DbGeography
Ein neuer DbGeography-Wert, wie durch den GML-Wert mit der angegebenen Koordinatensystem-ID definiert.