I have a .NET MVC web application referencing System.Data.Spatial
so I can use the DbGeography
datatype on a property for some geolocation stuff. I'm using Visual Studio 2012 with .NET 4.5 and do not have a full installation of SQL Server on my development machine (only localdb).
The app works great until I push it to Azure. As soon as my app hits my DbGeography
property, it throws this error:
Unable to load DLL 'SqlServerSpatial.dll': The specified module could not be found.
Has anyone else encountered this issue?
See Question&Answers more detail:os