在创建项目DbContext时,重写DbContext.OnModelCreating()方法;然后通过如下方法指定精度
1 protected override void OnModelCreating(DbModelBuilder modelBuilder) 2 { 3 modelBuilder.Entity<Product>().Property(product => product.Price).HasPrecision(18, 12); 4 }
Entity Framework 中Decimal字段长度设置方法,布布扣,bubuko.com
Entity Framework 中Decimal字段长度设置方法
原文:http://www.cnblogs.com/512sz/p/3848396.html