We are trying to upgrade our project from version 5.3 to 5.8, the main reason is to remove our dependency on SQLServer.Types for a couple of entities/tables that have a SQLGeometry or SQLGeography column.
We try and generate the code but the generated code still requires references to Micosroft.SQLServer.Types.
We try and set the field mapping for the column to be the geography type in SD.LLBLGen.Pro.DBDRiverCore.SpatialGeography.
But we get.
public virtual Microsoft.SqlServer.Types.SqlGeography Coordinate
{
get { return (Microsoft.SqlServer.Types.SqlGeography)GetValue((int)GoogleMapCoordinateFieldIndex.Coordinate, true); }
set { SetValue((int)GoogleMapCoordinateFieldIndex.Coordinate, value); }
}
Have we misunderstood the point of the 5.6 release or should we be able generate a class that no longer needs a reference to SQLServer.Types?