My project is done using portable areas, I’m using ninject for DI, I’m injecting a class that is in other assembly, so I have this code in the areaRegistraction:

DependencyResolver.Current.GetService<IModuleManager>().Add(this.module);  
IKernel kernel = DependencyResolver.Current.GetService<IKernel>();  
kernel.Bind<IConfigurationRepository>().To<ConfigurationRepository>();  

In my constructor I have this code:

public RequestController(IconfigurationRepository configurationRepository)
{
    this.configurationRepository= configurationRepository;
}

But by some reason configurationRepository is null

But if I put:

public RequestController()
{
   this.configurationRepository = ((StandardKernel)DependencyResolver.Current.GetService<IKernel>()).GetAll<IConfigurationRepository>().First();
}

It works fine. What is the different between them?

Any clue will be really appreciated.

link|improve this question
How exactly doesn't it work? Does it give you a two-week notice or what? – Fyodor Soikin Dec 14 '11 at 0:51
I updated my question. The problem is that configurationRepository is null – user1096760 Dec 14 '11 at 1:17
feedback

1 Answer

up vote 3 down vote accepted

The second implementation will work if several IConfigurationRepository are registered but the first one will fail in this case.

What's the exception in the first case? What happens if you use Single instead of First in the second case?

link|improve this answer
In first case configurationRepository is null. If i use single – user1096760 Dec 14 '11 at 1:20
If i use single instead of First in the second, give it exception:Sequence contains more than one element. – user1096760 Dec 14 '11 at 1:21
2  
There you have the problem. Ninject does not allow having multiple bindings because it would be ambiguous which one to take. – Remo Gloor Dec 14 '11 at 1:34
Thank you very much – user1096760 Dec 14 '11 at 14:14
feedback

Your Answer

 
or
required, but never shown

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