0

我正在使用适用于 .NET 的 Google Maps Api,它为我提供了 DbGeometry,但我需要将位置作为 DbGeography 存储在数据库中。如何从 DbGeometry 转到 DbGeography?

4

1 回答 1

0

如果您已经在数据库表中获得了它,则可以执行以下操作:

select geography::STGeomFromText(cast(yourGeomCol as varchar(max)), 4326)
from yourTable
于 2013-10-01T21:16:25.480 回答