I have found some links on how to change the table name and one property name in ASP.NET Identity like for example: ASP Identity table column change but mapping is not possible with new column name
modelBuilder.Entity<ApplicationUser>()
.Property(p => p.Id)
.HasColumnName("UserId");
This is working as expected, but how can I change the names of all columns at once? I