I\'m using Unity successfully for all regular constructor injection such as repositories etc., but I can\'t get it working with the ASP.NET Identity classes. The setup is th
Replace this property in the AccountController
AccountController
public ApplicationUserManager UserManager { get { _userManager = new ApplicationUserManager( new UserStore(new ApplicationDbContext())); return _userManager ?? Request.GetOwinContext().GetUserManager(); } private set { _userManager = value; } }