2

我正在尝试创建一个DbGeometry类型多边形。它在我的本地计算机上运行良好,但在 Azure Web 角色上托管我的网站时,我在返回语句中出现错误。

代码:

string polygon = “POLYGON ((-30.3637216 30.7124139,-30.3632216 30.7124139,-30.3632216 30.7129139,-30.3637216 30.7129139,-30.3637216 30.7124139))”;

return DbGeometry.FromText(polygon, 4326);

例外:

Exception has been thrown by the target of an invocation.


at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)

   at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)

   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)

   at System.Data.SqlClient.SqlSpatialServices.GeometryFromText(String geometryText)

   at Library.Modules.FindMyWay.SpatialFunctions.GetDefaultBox(Decimal latitude, Decimal longitude)

   at Library.Stop.ImportStops(String userName, IEnumerable`1 stops, Int32 companyId) Inner Exception:    at Microsoft.SqlServer.Types.GLNativeMethods.IsValid(GeoMarshalData g, Boolean& result)

   at Microsoft.SqlServer.Types.GLNativeMethods.IsValid(GeoData g)

   at Microsoft.SqlServer.Types.SqlGeometry.IsValidExpensive()

   at Microsoft.SqlServer.Types.SqlGeometry.GeometryFromText(OpenGisType type, SqlChars text, Int32 srid)

   at Microsoft.SqlServer.Types.SqlGeometry.Parse(SqlString s)

你知道为什么这个多边形是无效的吗?

4

2 回答 2

1

好的,我通过将 SqlGeometry 转换为 DbGeometry 以迂回的方式解决了这个问题:

.net 4.5 中是否有类似 dbgeometry makevalid 的东西

SqlGeometry geom = SqlGeometry.STPolyFromText(new SqlChars(new SqlString(polygon)), 4326);
                 return DbGeometry.FromBinary(geom.STAsBinary().Buffer);

此代码产生异常:

Unable to load DLL 'SqlServerSpatial.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

修理:

无法加载 DLL 'SqlServerSpatial.dll'

64 位 dll 导致了这个异常:

An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)

所以我必须将 32 位 dll 添加到项目中才能使用 Azure。

结果:现在很好,但我仍然不确定为什么DbGeometry不在 Azure 上工作,也不知道为什么 64 位 dll 也不能在 Azure 上工作。

于 2013-08-01T10:51:11.050 回答
0

我有同样的问题。我的解决方法是将以下 Dll 放在文件夹 C:/windows/System32 中:

SqlServerSpatial.dll SqlServerSpatial110.dll

实体框架根据此来源使用这些 dll: https ://alastaira.wordpress.com/2011/08/19/spatial-applications-in-windows-azure-redux-include-denali/

于 2015-05-26T12:45:31.693 回答