Định cấu hình kiểu dữ liệu trên một Thực thể cụ thể:
modelBuilder.Entity<User>()
.Property(p => p.Active)
.HasColumnType("bit");
hoặc chung:
modelBuilder.Properties()
.Where(x => x.PropertyType == typeof(bool))
.Configure(x => x.HasColumnType("bit"));