Both your samples, specify the userstore and usermanager created from the "AccountController", but is there a way to specify those per owin context instead?
public void ConfigureAuth(IAppBuilder app)
{
app.CreatePerOwinContext(ApplicationDbContext.Create);
app.CreatePerOwinContext<ApplicatonUserStore>(??);
}
Both your samples, specify the userstore and usermanager created from the "AccountController", but is there a way to specify those per owin context instead?