18

也许我错过了一些东西。我有一个“地理”数据类型的 sql server 列。

我想在我的 c# 代码中使用 DbGeography 类型。有什么方法可以将sql的地理转换或转换为dbgeography?

4

6 回答 6

29

很抱歉回复晚了 - 但在寻找其他东西时看到了这个。

只需执行以下操作:

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

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

要反转它:

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

希望有帮助!

于 2013-04-18T15:30:01.170 回答
10

当性能很重要时,应该使用众所周知的二进制文件而不是众所周知的文本:

var newGeography = DbGeography.FromBinary(theGeography.STAsBinary().Value);

使用 SRID 会导致过载,如果这很重要的话。在我对 1,000 个相当复杂的多边形的简单测试中,基于二进制的方法比基于文本的方法快 4 倍:

* Binary-based conversion
Run 1: 1948
Run 2: 1944
Run 3: 1959
Run 4: 1979
Run 5: 1988
Average: 1963.6

* Text-based conversion
Run 1: 8527
Run 2: 8553
Run 3: 8596
Run 4: 8535
Run 5: 8496
Average: 8541.4
于 2015-03-22T22:31:03.983 回答
1

如果您没有运行 EF6,则提供的解决方案似乎没问题。使用早期版本没问题,但是使用 EF6,我们不应该引用这个程序集。这让 EF 有点疯狂。

于 2014-05-22T14:29:49.337 回答
1

您必须添加对上述程序集的引用。以下帖子可能会帮助您链接link2

于 2014-08-25T19:33:40.340 回答
1

根据我在 ILSpy 中对 EntityFramework.SqlServer.dll 的阅读,我相信从 SqlGeography 转换为 DbGeography 的最快方法是:

var dbGeo = System.Data.Entity.SqlServer.SqlSpatialServices.Default.GeographyFromProviderValue(sqlGeo);

这种方法的优点是不需要二进制转换和解析。它只是使用 SqlGeography 作为内部提供程序值返回一个 DbGeography。

于 2017-08-17T04:57:12.673 回答
0

我发现这是一个可行的解决方案:

int coordSys = DbGeography.DefaultCoordinateSystemId; // 4326; 
SqlGeography g = SqlGeography.Point(lat, lon, coordSys);
return DbSpatialServices.Default.GeographyFromProviderValue(g);

没有序列化/转换为会降低性能的字符串 (WKT) 或二进制 (WKB)。

它在 EF 6.1.3、SqlServer 2016 SP1 和 Microsoft.SqlServer.Types.14.0.314.76 上为我工作

于 2017-04-09T03:45:16.053 回答