如何用 Ninject 注入身份 类?

How do I inject Identity classes with Ninject?

我正在尝试在 class 中使用 UserManager,但出现此错误:

Error activating IUserStore{ApplicationUser}
No matching bindings are available, and the type is not self-bindable.

我正在使用默认设置 Startup.cs,它为每个请求设置一个实例:

app.CreatePerOwinContext(ApplicationDbContext.Create);
app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);

我能够获取 ApplicationDbContext 实例,我相信它是由 Owin 注入的(是真的吗?):

public class GenericRepository<T> : IGenericRepository<T> where T : class
{
    private ApplicationDbContext context;

    public GenericRepository(ApplicationDbContext context)
    {
        this.context = context;
    }
}

但是我不能对 UserManager 做同样的事情(它会抛出之前显示的错误):

public class AnunciosService : IAnunciosService
{
    private IGenericRepository<Anuncio> _repo;
    private ApplicationUserManager _userManager;

    public AnunciosService(IRepositorioGenerico<Anuncio> repo, ApplicationUserManager userManager)
    {
        _repo = repo;
        _userManager = userManager;
    }
}

控制器像这样使用 UserManager:

public ApplicationUserManager UserManager
    {
        get
        {
            return _userManager ?? HttpContext.GetOwinContext().GetUserManager<ApplicationUserManager>();
        }
        private set
        {
            _userManager = value;
        }
    }

我正在使用 ninject 注入我的其他 classes,但是我如何注入 UserManager 及其依赖项并避免像在我的控制器中那样使用它?

我是这样注射的

kernel.Bind<IUserStore<ApplicationUser>>().To<UserStore<ApplicationUser>>();
kernel.Bind<UserManager<ApplicationUser>>().ToSelf();

现在它正常工作了。

OP 的回答对我不起作用,因为我使用的是自定义 ApplicationUser class,它以 long 而不是 string 作为键。

因此,我创建了一个通用静态方法,可以从当前 HttpContext 和 return 中获取 OwinContext 所需的具体实现。

private static T GetOwinInjection<T>(IContext context) where T : class
{
            var contextBase = new HttpContextWrapper(HttpContext.Current);
            return contextBase.GetOwinContext().Get<T>();
}

然后我使用了GetOwinInjection这样的注入方法:

kernel.Bind<ApplicationUserManager>().ToMethod(GetOwinInjection<ApplicationUserManager>);

kernel.Bind<ApplicationSignInManager>().ToMethod(GetOwinInjection<ApplicationSignInManager>);

如果你也在使用IAuthenticationManger,你应该这样注入:

kernel.Bind<IAuthenticationManager>().ToMethod(context =>
            {
                var contextBase = new HttpContextWrapper(HttpContext.Current);
                return contextBase.GetOwinContext().Authentication;
            });