mvc5 IdentityAuthenticationManager重置数据库

本文关键字:数据库 置数据 IdentityAuthenticationManager mvc5 | 更新日期: 2023-09-27 18:25:38

如何重置支持Microsoft.AspNet.Identity.EntityFramework.IdentityAuthenticationManager的数据库。

我想把Database.SetInitializer(new DropCreateDatabaseAlways<>);添加到global.asax中,但TContext应该使用什么?

mvc5 IdentityAuthenticationManager重置数据库

如果你不自定义东西,你可能想要DefaultIdentityDbContext:

        Database.SetInitializer(new DropCreateDatabaseAlways<DefaultIdentityDbContext>());