有人可以告诉我为什么我不能在我的 ef 代码优先模型中的属性上使用 .HasPrecision() 方法。下面的例子
public class Location
{
public double Lat { get; set; }
public double Long { get; set; }
}
using System.Data.Entity.ModelConfiguration;
public class LocationConfiguration : EntityTypeConfiguration<Location>
{
public LocationConfiguration()
{
Property(x => x.Long).HasPrecision(9,6);
Property(x => x.Lat).HasPrecision(9,6);
}
}
在上面的示例中,配置方法“HasPrecision(9,6)”是未知的,我似乎不知道为什么。