I am just converting an existing Mvc application into .Net Core now here is the problem when creating perOwinContext
app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
because no extension method of this class IApplicationBuilder contains this method. Are there any alternatives to this in .Net Core?
I have also read this but can't figure out how to resolve this case?
ConfigureServices
(e.g. usingAddIdentity
). – Kirk Larkin