Mysql
 sql >> Database >  >> RDS >> Mysql

Entity Framework MySQL tinyint(1) System.Boolean.Parse FormatException

Configura il tipo di dati su un'entità specifica:

modelBuilder.Entity<User>()
                  .Property(p => p.Active)
                  .HasColumnType("bit");

o generale:

modelBuilder.Properties()
            .Where(x => x.PropertyType == typeof(bool))
            .Configure(x => x.HasColumnType("bit"));