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

I have a multi tenant application mvc4 with modules. What I want to do is to hide complexity from modules. I want to not having some references like ninject in modules and manage dependency injection in core application. In just a modular system without lieutenant feature, I use ninject.extension.xml for this purpose and load xml file in kernel and everything works well. But when I want to implement multi tenant system with hierarchy kernels (i have a parent kernel and some child kernel in it) in the childkernel loading xml file to child kernel does not occurs .

How can I solve this problem?

DirectoryInfo directoryInfo = new DirectoryInfo(bpath);
var modules = directoryInfo.GetFiles("ModuleName.dll");
Assembly assembly = Assembly.LoadFrom(modules[0].FullName);
AppDomain.CurrentDomain.Load(assembly.GetName());

Kernel.Load(Assembly.LoadFile(modules[0].FullName));
Kernel.Load(XMLFile);
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.