AspNet.Identity.EntityFramework.Multitenant
AspNet.Identity.EntityFramework.Multitenant copied to clipboard
How to specify "per owin context" configuration?
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>(??);
}
Did anyone find a solution for this.