Bättre senare än aldrig )
Om du använder kodförsta och manuella mappningsklasser, använd HasColumnType("INT")-konfigurationen för int-egenskaper.
Till exempel:
var entity = builder.Entity<APP_TABLE>();
entity
.HasKey(x => x.ID)
.ToTable("APP_TABLE", "SCHEMA");
entity
.Property(x => x.ID)
.HasColumnType("INT");