ASP.NET MVC 5将Identity 2.0解耦为独立的类库

时间:2015-05-04 12:36:57

标签: asp.net-mvc-5 asp.net-identity-2

目标是将应用程序与Identity分离。默认情况下,身份代码在主项目中引用EntityFramework,这是不受欢迎的。

我可以创建一个新的类库并添加对Microsoft.AspNet.Identity.EntityFramework和相关程序集的引用。问题是AccountController与Identity库中的UserManagerApplicationDbContext紧密耦合。

public AccountController()
            : this(new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(new ApplicationDbContext())))

0 个答案:

没有答案