عنوان:

‫Entity Framework Core 5.0 Preview 4 منتشر شد


نویسنده: وحید نصیری
تاریخ: ۱۳۹۹/۰۲/۳۱ ۷:۱۲
آدرس: www.dntips.ir
// Configure database precision/scale in model
modelBuilder
    .Entity<Blog>()
    .Property(b => b.Numeric)
    .HasPrecision(16, 4);

// Specify SQL Server index fill factor
modelBuilder
    .Entity<Customer>()
    .HasIndex(e => e.Name)
    .HasFillFactor(90);


مشاهده مطلب اصلی