Instead of manually binding each class, what methods and templates, if any, are recommended for automatically setting up bindings?
For example, the vast majority of bindings simply look like this:
Bind<ICustomerRepository>.To<CustomerRepository>();
After the modules become large, you can get 100s of bindings that look exactly the same. Could this be automated?
cbp
source share