Partager via


DbGeography.FromText Méthode

Définition

Crée une valeur DbGeography en fonction de la valeur texte connue spécifiée.

Surcharges

FromText(String)

Crée une valeur DbGeography en fonction de la valeur texte connue spécifiée.

FromText(String, Int32)

Crée une valeur DbGeography en fonction de la valeur texte et de l'identificateur de système de coordonnées (SRID) connus spécifiés.

FromText(String)

Crée une valeur DbGeography en fonction de la valeur texte connue spécifiée.

public:
 static System::Data::Spatial::DbGeography ^ FromText(System::String ^ wellKnownText);
public static System.Data.Spatial.DbGeography FromText (string wellKnownText);
static member FromText : string -> System.Data.Spatial.DbGeography
Public Shared Function FromText (wellKnownText As String) As DbGeography

Paramètres

wellKnownText
String

Chaîne qui contient une représentation textuelle connue de la valeur géographique.

Retours

Nouvelle valeur DbGeography telle que définie par la valeur texte connue avec l'identificateur par défaut du système de coordonnées de géographie (SRID) (DefaultCoordinateSystemId).

Exceptions

wellKnownText

S’applique à

FromText(String, Int32)

Crée une valeur DbGeography en fonction de la valeur texte et de l'identificateur de système de coordonnées (SRID) connus spécifiés.

public:
 static System::Data::Spatial::DbGeography ^ FromText(System::String ^ wellKnownText, int coordinateSystemId);
public static System.Data.Spatial.DbGeography FromText (string wellKnownText, int coordinateSystemId);
static member FromText : string * int -> System.Data.Spatial.DbGeography
Public Shared Function FromText (wellKnownText As String, coordinateSystemId As Integer) As DbGeography

Paramètres

wellKnownText
String

Chaîne qui contient une représentation textuelle connue de la valeur géographique.

coordinateSystemId
Int32

Identificateur du système de coordonnées que la nouvelle valeur de DbGeography doit utiliser.

Retours

Nouvelle valeur DbGeography telle que définie par la valeur texte connue avec l'identificateur du système de coordonnées de géographie spécifié.

Exceptions

wellKnownText

coordinateSystemId

S’applique à