ASP.NET标识2更改列名称

时间:2017-10-06 06:59:23

标签: c# asp.net asp.net-identity

我找到了一些关于如何在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");

这是按预期工作的,但如何一次更改所有列的名称?我

0 个答案:

没有答案