I was trying to set a property in the constructor af a controller like this:
public ApplicationUserManager UserManager { get; private set; }
public AccountController()
{
UserManager = HttpContext.GetOwinContext().Get<ApplicationUserManager>("");
}
But as explained here:
https://stackoverflow.com/a/3432733/1204249
The HttpContext is not available in the constructor.
So how can I set the property so that I can access it in every Actions of the Controller?