Пытаюсь использовать тип DBGeography из пространства имен System.Data.Entity.Spatial в EF6 но ef выдает следующее исключение:
There is no store type corresponding to the conceptual side type 'Geography' of primitive type 'Geography'.
Вот сам класс:
public class Coordinate : IObject
{
public int Id { get; set; }
public DbGeography Location { get; set; }
public string Address { get; set; }
public bool Status { get; set; }
}
База SQL Server Express 9.0.1399
Вроде в экспресс версиях нету ограничений на тип. В чем причина?