I have an unusual situation injecting a service into an ASP.NET MVC Controller. The Controller provides a single action to render a side-bar menu on the page, and the service injected into the Controller is a factory to create the side-bar content. The action is decorated with the [ChildActionOnly] attribute: the side bar can only be rendered when rendering another action.
The difficulty comes in that I want to inject different instances of the side-bar factory abstraction according to the page (= Controller) being requested. Previously, I was doing this using a sort-of abstract factory, which had the inelegant implementation of using the controller name string to determine which concrete factory implementation to use; I've now moved this to a proper abstract factory, and thus need to move the selection of the factory type elsewhere.
My Ninject bindings are currently defined very simply as:
Kernel.Bind<ISideBarFactory>().To<FooSideBarFactory>().InRequestScope();
Kernel.Bind<ISideBarFactory>().To<DefaultSideBarFactory>().InRequestScope();
and as I add more controllers, I will add more instances of the first line. The way I would like to see this working is:
/foo/actionrequest received- Ninject binds
ISideBarFactorytoFooSideBarFactoryand injects intoSideBarController
- Ninject binds
/bar/actionrequest received- Ninject binds
ISideBarFactorytoBarSideBarFactoryand injects intoSideBarController
- Ninject binds
/baz/actionrequest received- No
BazSideBarFactoryexists, so Ninject bindsISideBarFactoryto the default implementation,DefaultSideBarFactory, and injects intoSideBarController
- No
I've consulted the Ninject wiki page on Contextual Binding, which appears to be what I want in principle, but I haven't found anything documented there which obviously achieves my goal.