I realize constructor injection is preferred but I'm curious how to use Ninject's contextual 'Named Bindings' when using another form of injection.
Specifically how do I do the following when using DependencyResolver or property injection.
public MyService([Named("Alpha")] IRepository repository)
{
this.repository = repository;
}