If I have a class with a ctor set up for multi-injection like this:
public Shogun(IEnumerable<IWeapon> allWeapons)
{
this.allWeapons = allWeapons;
}
And bindings set up like this:
Bind<IWeapon>().To<Sword>();
Bind<IWeapon>().To<Dagger>().WhenInjectedInto<Shogun>();
Then I would expect Shogun to be constructed with both weapons injected? But this isn't the case - it only gets the Dagger.
If I add a further binding like this:
Bind<IWeapon>().To<Sword>();
Bind<IWeapon>().To<Dagger>().WhenInjectedInto<Shogun>();
Bind<IWeapon>().To<Shuriken>().WhenInjectedInto<Shogun>();
Then Shogun gets the Dagger and the Shuriken. WhenInjectedInto<T>() looks like it should only be constraining the binding it is applied to and not affecting other bindings. I find this behaviour very misleading.
Can someone explain what is happening here?
IWeaponto be bound toSword. Why should bindingIWeapontoDaggerin the specific case prevent the general binding? This means I can write code that makes a specific binding and break more general bindings made elsewhere. It seems dangerous and counter-intuitive. – James World Sep 4 '11 at 8:04WhenInjectedInto, wouldn't it? I am new to ninject, but as far as I understand, the purpose of this feature is to have specific cases, as you have mentioned, handled. You wantIWeaponto be bound toSwordin general; however, when injected intoShogun, you want it to be bound toDagger. If you wantShogunto have bothSwordandDaggerinjected,WhenInjectedIntoshouldn't be used, IMHO. – virtualmic Sep 4 '11 at 8:13DaggerorSword) rather than the contract (i.e.IWeapon), rather than saying "When injecting IWeapon into Shogun inject a Dagger". Read this way it makes sense. – James World Sep 4 '11 at 8:37