sql >> データベース >  >> RDS >> Sqlserver

sql地理からdbgeographyへ?

    応答が遅れて申し訳ありませんが、他の何かを検索しているときにこれを見ました。

    次の手順を実行するだけです。

    SqlGeography theGeography;
    int srid = 4326; // or alternative
    
    DbGeography newGeography = DbGeography.FromText(theGeography.ToString(), srid);
    

    逆にするには:

    DbGeography theGeography;
    SqlGeography newGeography = SqlGeography.Parse(theGeography.AsText()).MakeValid();
    

    お役に立てば幸いです。



    1. GitHubのサンプルスキーマ

    2. MySQLで複数の列を検索する方法は?

    3. PHP5.5のpassword_hashおよびpassword_verify関数を使用する

    4. MySQLで現在の日付を取得する方法