テーブル名の名前を変更した UserManager 機能を使用しています (db コンテキスト構成を介して):
modelBuilder.Entity<User>().ToTable("Users");
modelBuilder.Entity<IntUserRole>().ToTable("UserRoles");
modelBuilder.Entity<IntUserLogin>().ToTable("UserLogins");
modelBuilder.Entity<IntUserClaim>().ToTable("UserClaims");
modelBuilder.Entity<IntRole>().ToTable("Roles");
ここで、ロール オプションで [Authorize] 属性を使用したい場合は、DB に対して aspnet_regsql.exe を起動して、必要なすべてのストアド プロシージャを作成する必要があります。
残念ながら、デフォルトの名前付きテーブル (aspne_Roles ...) の新しいセットを作成します。
テーブルを再利用する方法はありますか?