With so many IoC containers is there a decision matrix to help in narrowing them down based on features, supported platforms, etc.?

link|improve this question

67% accept rate
2  
If interested in an up-to-date Performance Comparison of two of the most basic features look at iocbattle.com. Looking at performance I would probably recommend StructureMap or Autofac (if registering using lambdas). – MartinF Dec 21 '10 at 1:29
www.iocbattle.com seems to have been removed. – muruge Jun 22 '11 at 15:38
feedback

6 Answers

up vote 14 down vote accepted

More is certainly better than less.

There's a good comparison on this blog. And part 2 here.

link|improve this answer
The comparison led me to use autofac, w/ great results – Scott Weinstein Jul 16 '09 at 23:32
4  
Note, ninject IMHO is one of the cleanest and most complete IoC containers, it has had a LOT of updates in the last 6 months github.com/enkari/ninject/network – Sam Saffron Jul 16 '09 at 23:42
I'd put a vote on NInject too... considering I decided to try and understand the source, and it was so clean and well factored I had no trouble following it on first reading. – jerryjvl Jul 16 '09 at 23:46
This is the best comparison so far. It is somewhat limited on the number of IoC frameworks covered and missed some features that are important to my project such as Compact Framework support (NInject supports CF). – Jason Morse Jul 20 '09 at 17:12
3  
The community really needs a wiki that can be kept up to date for this. – Derek Greer Oct 8 '09 at 3:15
show 1 more comment
feedback

An updated (08/30/2011) comparison is found here, which includes some new up and comers.

link|improve this answer
feedback

Another one worth looking at is MEF, it's not strictly an IoC container, but employs many of the same techniques. The important thing to keep in mind is that it is going to ship with .Net 4.0.

I really love the way Nate does stuff with Ninject, it is so clean and a very active project and I would strongly recommend it (even over MEF).

Make sure you look at the history of check-ins for all your candidate containers, if there are few to no updates in the last 6-12 months I would stay clear of them, no matter what the comparison matrix says.

Also, I would look at the test cases for the frameworks, and make sure they make sense. You don't want to be stuck with a over complicated IoC container.

link|improve this answer
feedback

Take a look at this chart as well: http://www.iocbattle.com/

link|improve this answer
Just noticed @MartinF comment to OP. Up voting his comment since it was there before I posted this answer. – zam6ak Jan 31 '11 at 21:24
feedback

Here is another comparison by Scott Hanselman.

link|improve this answer
Thats really out of date ... – Sam Saffron Jul 16 '09 at 23:37
3  
As compared to what? – mxmissile Jul 17 '09 at 13:41
This gives sample code comparison: (Linked from Scott Hanselman's blog) weblogs.asp.net/podwysocki/archive/2008/02/26/… – user295190 Feb 17 '11 at 3:03
feedback

Another comparison here..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.