Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
I am sorry, but why would you expect Shogun (in the first case) to be constructed with both weapons injected, when you explicitly are asking to bind IWeapon to Dagger, when injected into Shogun? – virtualmic Sep 4 '11 at 7:57
Because I have also asked for IWeapon to be bound to Sword. Why should binding IWeapon to Dagger in 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:04
1  
But that would beat the purpose of WhenInjectedInto, 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 want IWeapon to be bound to Sword in general; however, when injected into Shogun, you want it to be bound to Dagger. If you want Shogun to have both Sword and Dagger injected, WhenInjectedInto shouldn't be used, IMHO. – virtualmic Sep 4 '11 at 8:13
While we are in the business of disclaimers, I also am new to Ninject. :) I see what you are saying, and it may just be a matter of opinion - I think the reading of WhenInjectedInto is a little ambigious. I was reading it as refering to the implementation (i.e. Dagger or Sword) 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
I still don't like the way the general bindings are then dropped though. :) I can't help but see it potentially breaking things in an unexpected manner in complex applications. – James World Sep 4 '11 at 8:43
show 2 more comments

1 Answer

up vote 13 down vote accepted

That's a bug - GetAll will not return all instances in case conditional and unconditional bindings are mixed.

It's fixed in version Version 2.4.0.0

share|improve this answer
+1 for quick turnaround! – Jason Turan Sep 4 '11 at 22:31
1  
So I was wrong! (in the comments to the question). Thanks for the question, James and the clarification, Remo! – virtualmic Sep 5 '11 at 4:12
Nice job! I'm relieved it was a bug and not by design! – James World Sep 5 '11 at 7:16
Just to add, at the time of writing the current release version is 2.2.0.0 - so anyone affected by this needs to deliberately grab the latest build. – James World Sep 5 '11 at 7:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.