mvc5 IdentityAuthenticationManager重置数据库

时间:2013-07-31 00:40:19

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

如何重置支持Microsoft.AspNet.Identity.EntityFramework.IdentityAuthenticationManager

的数据库

我去添加Database.SetInitializer(new DropCreateDatabaseAlways<>);到global.asax,但是我应该将什么用于TContext?

1 个答案:

答案 0 :(得分:0)

如果您没有自定义内容,则可能需要DefaultIdentityDbContext:

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