Reputation: 57469
This question have been answered in 2008. End of 2010 now. Any changes? which of these IOC/DI frameworks are recommended for a very large project that will be maintained forever?
Features of this project includes:
Project Structure:
Upvotes: 3
Views: 1601
Reputation: 1038710
Personally I use Spring.NET. This framework has much other features than a simple object container that can be used for DI.
Upvotes: 0
Reputation: 4762
My personal preference is still Ninject. Excellent documentation, easy to use, drop dead simple, and gets the job done. It's our IoC of choice in all of our projects at work, and works a treat.
Side note RE something that will last forever. Wrap your IoC up in a facade so that you can swap it out down the road (we do this with our IoC, ORM, etc. just in case we have to change a few years from now).
Upvotes: 4