共用方式為


DbSpatialServices.GeographyFromText 方法

定義

根據指定的已知文字值,建立新的 DbGeography 值。

多載

GeographyFromText(String)

根據指定的已知文字值,建立新的 DbGeography 值。

GeographyFromText(String, Int32)

根據指定的已知文字值和座標系統標識碼 (SRID) 建立新的 DbGeography 值。

GeographyFromText(String)

根據指定的已知文字值,建立新的 DbGeography 值。

public:
 abstract System::Data::Spatial::DbGeography ^ GeographyFromText(System::String ^ wellKnownText);
public abstract System.Data.Spatial.DbGeography GeographyFromText (string wellKnownText);
abstract member GeographyFromText : string -> System.Data.Spatial.DbGeography
Public MustOverride Function GeographyFromText (wellKnownText As String) As DbGeography

參數

wellKnownText
String

字串,包含地理值的已知文字表示。

傳回

以預設 DbGeography 座標系統識別碼 (SRID) (DefaultCoordinateSystemId) 為已知文字值所定義的新 DbGeography 值。

例外狀況

wellKnownText

適用於

GeographyFromText(String, Int32)

根據指定的已知文字值和座標系統標識碼 (SRID) 建立新的 DbGeography 值。

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

參數

wellKnownText
String

字串,包含地理值的已知文字表示。

coordinateSystemId
Int32

DbGeography 值應該使用的座標系統的標識碼。

傳回

以指定的座標系統識別碼 (SRID) (DefaultCoordinateSystemId) 定義之已知文字值所定義的新 DbGeography 值。

例外狀況

wellKnownText

coordinateSystemId

適用於