我正在寻找有关如何将IApplicationUserManager注入OAuthAuthorizationServerProvider.cs的解决方案。
不同之处在于我使用dependency injections(Autofac)。他们的AuthRepository将是我的ApplicationUserManager。
注入:
builder.RegisterType(typeof(ApplicationUserManager)).As(typeof(IApplicationUserManager)).InstancePerRequest();
您有任何想法甚至更好的解决方案吗?