Which IoC to consider while developing ASP.NET Web application project and what are the advantages of different IoC?
- ObjectBuilder
- Unity
- Spring.NET
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is not in your list but consider looking at Castle Windsor
Number of facilities such as supporting Factories so that the factory product is injected not the factory itself or the Wcf facility for injecting a proxy or creating a host with dependencies.
Has a nice fluent interface for wiring up individual items but preferably you would use a convention to auto wire up so that you don’t have to list each component.
Some other nice features:
Here is a poll taken this year showing the favoured IoC. Unity seems to be top but that is probably because it is a Microsoft product and Microsoft workshops will pick it up by default.