40

我有以下(简化的)情况:我有两个接口

interface IAmAnInterface
{
    void DoSomething();
}

interface IAmAnInterfaceToo
{
    void DoSomethingElse();
}

和一个实现两者的类:

class IAmAnImplementation: IAmAnInterface, IAmAnInterfaceToo
{
    public IAmAnImplementation()
    {
    }

    public void DoSomething()
    {
    }

    public void DoSomethingElse()
    {
    }
}

现在我使用 Ninject 将同一个类绑定到两个接口。因为我想要使用相同的beeing实例,很明显我需要某种单例。我玩过ninject.extensions.namedscope以及但没有成功。我最后一次尝试是:IAmAnImplementationIAmAnInterfaceIAmAnInterfaceTooInScope()

Bind<IAmAnImplementation>().ToSelf().InSingletonScope();
Bind<IAmAnInterface>().To<IAmAnImplementation>().InSingletonScope();
Bind<IAmAnInterfaceToo>().To<IAmAnImplementation>().InSingletonScope();

但不幸的是,当我通过kernel.Get<IDependOnBothInterfaces>();它请求我的测试类的实例时,实际上使用了不同的IAmAnImplementation.

class IDependOnBothInterfaces
{
    private IAmAnInterface Dependency1 { get; set; }
    private IAmAnInterfaceToo Dependency2 { get; set; }

    public IDependOnBothInterfaces(IAmAnInterface i1, IAmAnInterfaceToo i2)
    {
        Dependency1 = i1;
        Dependency2 = i2;
    }

    public bool IUseTheSameInstances
    {
        get { return Dependency1 == Dependency2; } // returns false
    }
}

有没有办法告诉 Ninject 使用相同的IAmAnImplementationforIAmAnInterface和 as实例IAmAnInterfaceToo

4

1 回答 1

106

使用V3.0.0非常容易

Bind<I1, I2, I3>().To<Impl>().InSingletonScope();
于 2012-04-18T09:32:45.660 回答