我找到了一些关于如何在ASP.NET Identity中更改表名和一个属性名的链接,例如:ASP Identity table column change but mapping is not possible with new column name
modelBuilder.Entity<ApplicationUser>()
.Property(p => p.Id)
.HasColumnName("UserId");
这是按预期工作的,但如何一次更改所有列的名称?我