vote up 1 vote down star
1

I am looking for the IOC/DI framework with the best documentation which would it be?

flag

5 Answers

vote up 2 vote down check

Poor framework with lots of docs is not going to do you much good. It's better to ask - which IoC framework is good, logical and natural to use, and has just enough docs to get you up to speed. And for that I say Castle Windsor or AutoFac.

link|flag
vote up 4 vote down

Microsoft's Unity Application Block is pretty well documented.

link|flag
Yes, it's well documented, but it's brittle and opaque to use, which is more important than docs, so I wouldn't use it anyway – Krzysztof Koźmic Sep 25 at 9:35
vote up 3 vote down

I currently use the WindsorContainer from the Castle project, the unit tests provide an excellent source of documentation.

link|flag
I don't typically think of unit tests as public documentation, but its a good suggestion to see how to use the library. – Aaron Fischer Sep 24 at 1:40
2  
Very true, they are great when you need to explore the functionallity of the framework. I have found it hard to find good documentation on many IOC containers, usually the examples are very basic. – Rohan West Sep 24 at 1:55
vote up 2 vote down

I'm currently using Unity but when I was learning IoC concept the most useful for me to learn was Ninject.

Another way to learn IoC is to try to create IoC yourself following Daniel Cazzulino's screencasts for his Funq IoC.

Here's an interesting discussion here on stackoverflow about IoC/DI.

link|flag
+1 for the link to the Funq screencasts. I found them very enlightening, and I hope Kzu gets back into the project soon. – Matt Hamilton Sep 24 at 1:27
vote up 0 vote down

WindsorContainer, Castle. Or if you have some time, construct your own ;) Start with a dictionary for starters :D.

Unity is a good solution too! ;)

link|flag

Your Answer

Get an OpenID
or

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