Sorry in advance for the long question, it\'s long because I\'ve been digging at this all day.
I have an ASP.Net MVC2 application with
This question was answerd on the mailing list. http://groups.google.com/group/ninject/browse_thread/thread/a7f2163e060a6d64
In Short:
I'm not sure if this is a typo in your example, but I did notice that you've written
kernel.Scan(a => {
a.From("MyApp.Data");
// etc.
}
But shouldn't that be
kernel.Scan(a => {
a.From("MyApp.Data.dll")
// etc.
});
Because if I include the .dll part in my example project it works, but if I leave it out I receive a FileNotFoundException.