sql-server – sql地理位置到dbgeography?

前端之家收集整理的这篇文章主要介绍了sql-server – sql地理位置到dbgeography?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
也许我错过了一些东西.我有一个sql server列的“地理”数据类型.

我想在我的c#代码中使用DbGeography类型.任何方式来转换或转换从sql的地理位置到数据挖掘?

解决方法

对于迟到的回应抱歉,但是在寻找别的东西时看到了这一点.

只需执行以下操作:

sqlGeography theGeography;
int srid = 4326; // or alternative

DbGeography newGeography = DbGeography.FromText(theGeography.ToString(),srid);

要扭转它:

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

希望有帮助!

原文链接:https://www.f2er.com/mssql/82122.html

猜你在找的MsSQL相关文章