我有這個在我的域名交換從EF 5 EF 6阿爾法3 - 現在DbGeography並不在我的測繪工作
public DbGeography Location { get; set; }
,這現在
this.Property(t => t.Location);
在我的映射文件,我得到上述線
Error 1 The type 'System.Data.Spatial.DbGeography' must be a non-nullable value type in order to use it as parameter 'T' in the generic type or method 'System.Data.Entity.ModelConfiguration.Configuration.StructuralTypeConfiguration<TStructuralType>.Property<T>(System.Linq.Expressions.Expression<System.Func<TStructuralType,T>>)'
從來沒有在EF這個誤差的誤差5.
刪除對System.Data.Entity的引用 – ErikEJ