标签: .net sql-server google-maps
我正在使用Google Maps Api for .NET,它为我提供了DbGeometry,但我需要将该位置存储为数据库中的DbGeography。我如何从DbGeometry转到DbGeography?
答案 0 :(得分:0)
如果您已经在数据库表中获得了它,您可以执行以下操作:
select geography::STGeomFromText(cast(yourGeomCol as varchar(max)), 4326) from yourTable