在创建项目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
时间: 2024-10-09 20:30:49