I\'m using EntityFramework 6 in my C# model-first project which using a MySQL database. Everything was fine and I could ge
Configure the datatype on a specific Entity:
modelBuilder.Entity() .Property(p => p.Active) .HasColumnType("bit");
or general:
modelBuilder.Properties() .Where(x => x.PropertyType == typeof(bool)) .Configure(x => x.HasColumnType("bit"));