I am building an application using Ninject and ASP.NET MVC 3. Is it possible with Ninject to supply a generic binding within a module like this:
Bind(typeof(IRepository<>)).To(typeof(SomeConcreteRepository<>));
EDIT: And then for a specific type , create a class that inherits from SomeConcreteRepository:
Bind(typeof(IRepository<Person>)).To(typeof(PersonConcreteRepository));
This throws an exception that multiple bindings are available. However, is there another approach to this? Are there other DI frameworks for .NET which support this behavior?