共用方式為


DbGeography.FromText 方法

定義

多載

FromText(String)

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

FromText(String, Int32)

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

FromText(String)

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

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

參數

wellKnownText
String

包含地理位置值之已知文字表示的字串。

傳回

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

適用於

FromText(String, Int32)

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

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

參數

wellKnownText
String

包含地理位置值之已知文字表示的字串。

coordinateSystemId
Int32

新的 DbGeography 值應該使用的座標系統的識別項。

傳回

新的 DbGeography 值,由含有指定的座標系統識別項的已知文字值所定義。

適用於