Why do I need an IoC container as opposed to straightforward DI code? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T10:23:38Zhttp://stackoverflow.com/feeds/question/871405http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code120Why do I need an IoC container as opposed to straightforward DI code?Vadim2009-05-16T01:06:18Z2009-10-13T09:20:29Z
<p>I've been using Dependency Injection (DI) for awhile, injecting either in a constructor, property, or method. I've never felt a need to use an IoC container. However, the more I read, the more pressure I feel from the community to use an IoC container.</p>
<p>I played with .NET containers like StructureMap, NInject, Unity, and Funq. I still fail to see how an IoC container is going to benefit / improve my code.</p>
<p>I'm also afraid to start using a container at work because many of my co-workers will see code which they don't understand. Many of them may be reluctant to learn new technology.</p>
<p>Please, convince me that I need to use an IoC container. I'm going to use these arguments when I talk to my fellow developers at work.</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871410#87141024Answer by bendewey for Why do I need an IoC container as opposed to straightforward DI code?bendewey2009-05-16T01:13:12Z2009-10-07T22:11:50Z<p>In my opinion the number one benefit of an IoC is the ability to centralize the configuration of your dependencies.</p>
<p>If you're currently using Dependency injection your code might look like this</p>
<pre><code>public class CustomerPresenter
{
public CustomerPresenter() : this(new CustomerView(), new CustomerService())
{}
public CustomerPresenter(ICustomerView view, ICustomerService service)
{
// init view/service fields
}
// readonly view/service fields
}
</code></pre>
<p>If you used a static IoC class, as opposed to the, IMHO the more confusing, configuration files, you could have something like this:</p>
<pre><code>public class CustomerPresenter
{
public CustomerPresenter() : this(IoC.Resolve<ICustomerView>(), IoC.Resolve<ICustomerService>())
{}
public CustomerPresenter(ICustomerView view, ICustomerService service)
{
// init view/service fields
}
// readonly view/service fields
}
</code></pre>
<p>Then, your Static IoC class would look like this, I'm using Unity here.</p>
<pre><code>public static IoC
{
private static readonly IUnityContainer _container;
static IoC()
{
InitializeIoC();
}
static void InitializeIoC()
{
_container = new UnityContainer();
_container.RegisterType<ICustomerView, CustomerView>();
_container.RegisterType<ICustomerService, CustomerService>();
// all other RegisterTypes and RegisterInstances can go here in one file.
// one place to change dependencies is good.
}
}
</code></pre>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871414#8714145Answer by bbmud for Why do I need an IoC container as opposed to straightforward DI code?bbmud2009-05-16T01:19:13Z2009-05-16T01:19:13Z<p>Because all the dependencies are clearly visible, it promotes creating components which are loosely coupled and at the same time easily accessible and reusable across the application.</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871417#87141716Answer by Jeffrey Hantin for Why do I need an IoC container as opposed to straightforward DI code?Jeffrey Hantin2009-05-16T01:19:48Z2009-05-16T01:19:48Z<p>Using a container is mostly about changing from an <em>imperative/scripted</em> style of initialization and configuration to a <em>declarative</em> one. This may have a few different beneficial effects:</p>
<ul>
<li>Reducing <a href="http://catb.org/jargon/html/H/hairball.html" rel="nofollow">hairball</a> main-program startup routines.</li>
<li>Enabling fairly deep deployment-time reconfiguration capabilities.</li>
<li>Making dependency-injectable style the path of least resistance for new work.</li>
</ul>
<p>Of course, there may be difficulties:</p>
<ul>
<li>Code that requires complex startup/shutdown/lifecycle management may not be easily adapted to a container.</li>
<li>You will probably have to navigate any personal, process and team culture issues -- but then, that's why you asked...</li>
<li>Some of the toolkits are fast becoming heavyweight themselves, encouraging the sort of deep dependency that many DI containers started off as a backlash against.</li>
</ul>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871420#871420-18Answer by Joel Spolsky for Why do I need an IoC container as opposed to straightforward DI code?Joel Spolsky2009-05-16T01:21:30Z2009-05-16T01:21:30Z<p>I'm with you, Vadim. IoC containers take a simple, elegant, and useful concept, and make it something you have to study for two days with a 200-page manual.</p>
<p>I personally am perplexed at how the IoC community took a beautiful, <a href="http://www.martinfowler.com/articles/injection.html" rel="nofollow">elegant article by Martin Fowler</a> and turned it into a bunch of complex frameworks typically with 200-300 page manuals.</p>
<p>I try not to be judgemental (HAHA!), but I think that people who use IoC containers are (A) very smart and (B) lacking in empathy for people who aren't as smart as they are. Everything makes perfect sense to them, so they have trouble understanding that many ordinary programmers will find the concepts confusing. It's the <a href="http://www.nytimes.com/2007/12/30/business/30know.html" rel="nofollow">curse of knowledge</a>. The people who understand IoC containers have trouble believing that there are people who don't understand it.</p>
<p>The most valuable benefit of using an IoC container is that you can have a configuration switch in one place which lets you change between, say, test mode and production mode. For example, suppose you have two versions of your database access classes... one version which logged aggressively and did a lot of validation, which you used during development, and another version without logging or validation that was screamingly fast for production. It is nice to be able to switch between them in one place. On the other hand, this is a fairly trivial problem easily handled in a simpler way without the complexity of IoC containers.</p>
<p>I believe that if you use IoC containers, your code becomes, frankly, a lot harder to read. The number of places you have to look at to figure out what the code is trying to do goes up by at least one. And somewhere in heaven an angel cries out.</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871458#8714586Answer by Bill Karwin for Why do I need an IoC container as opposed to straightforward DI code?Bill Karwin2009-05-16T01:41:16Z2009-05-16T01:41:16Z<p>I'm a fan of declarative programming (look at how many SQL questions I answer), but the IoC containers I've looked at seem too arcane for their own good. </p>
<p>...or perhaps the developers of IoC containers are incapable of writing clear documentation.</p>
<p>...or else both are true to one degree or another.</p>
<p>I don't think the <em>concept</em> of an IoC container is bad. But the implementation has to be both powerful (that is, flexible) enough to be useful in a wide variety of applications, yet simple and easily understood.</p>
<p>It's probably six of one and half a dozen of the other. A real application (not a toy or demo) is bound to be complex, accounting for many corner cases and exceptions-to-the-rules. Either you encapsulate that complexity in imperative code, or else in declarative code. But you have to represent it somewhere.</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871513#87151318Answer by bendewey for Why do I need an IoC container as opposed to straightforward DI code?bendewey2009-05-16T02:12:21Z2009-10-07T15:24:38Z<p>IoC Containers are also good for loading deeply nested class dependencies. For example if you had the following code using Depedency Injection.</p>
<pre><code>public void GetPresenter()
{
var presenter = new CustomerPresenter(new CustomerService(new CustomerRepository(new DB())));
}
class CustomerPresenter
{
private readonly ICustomerService service;
public CustomerPresenter(ICustomerService service)
{
this.service = service;
}
}
class CustomerService
{
private readonly IRespoistory<Customer> repository;
public CustomerService(IRespoistory<Customer> repository)
{
this.repository = repository;
}
}
class CustomerRepository : IRespoistory<Customer>
{
private readonly DB db;
public CustomerRepository(DB db)
{
this.db = db;
}
}
class DB { }
</code></pre>
<p>If you had all of these dependencies loaded into and IoC container you could Resolve the CustomerService and the all the child dependencies will automatically get resolved.</p>
<p>For example:</p>
<pre><code>public static IoC
{
private IUnityContainer _container;
static IoC()
{
InitializeIoC();
}
static void InitializeIoC()
{
_container = new UnityContainer();
_container.RegisterType<ICustomerService, CustomerService>();
_container.RegisterType<IRepository<Customer>, CustomerRepository>();
}
static T Resolve<T>()
{
return _container.Resolve<T>();
}
}
public void GetPresenter()
{
var presenter = IoC.Resolve<CustomerPresenter>();
// presenter is loaded and all of its nested child dependencies
// are automatically injected
// -
// Also, note that only the Interfaces need to be registered
// the concrete types like DB and CustomerPresenter will automatically
// resolve.
}
</code></pre>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871712#8717128Answer by Steven Lyons for Why do I need an IoC container as opposed to straightforward DI code?Steven Lyons2009-05-16T04:40:52Z2009-05-16T04:56:12Z<p>I think most of the value of an IoC is garnered by using DI. Since you are already doing that, the rest of the benefit is incremental.</p>
<p>The value you get will depend on the type of application you are working on:</p>
<ul>
<li><p>For multi-tenant, the IoC container can take care of some of the infrastructure code for loading different client resources. When you need a component that is client specific, use a custom selector to do handle the logic and don't worry about it from your client code. You can certainly build this yourself but <a href="http://mikehadlow.blogspot.com/2008/11/multi-tenancy-part-2-components-and.html" rel="nofollow">here's an example</a> of how an IoC can help.</p></li>
<li><p>With many points of extensibility, the IoC can be used to load components from configuration. This is a common thing to build but tools are provided by the container.</p></li>
<li><p>If you want to use AOP for some cross-cutting concerns, the <a href="http://ayende.com/Blog/archive/2008/07/31/Logging--the-AOP-way.aspx" rel="nofollow">IoC provides hooks</a> to intercept method invocations. This is less commonly done ad-hoc on projects but the IoC makes it easier.</p></li>
</ul>
<p>I've written functionality like this before but if I need any of these features now I would rather use a pre-built and tested tool if it fits my architecture.</p>
<p>As mentioned by others, you can also centrally configure which classes you want to use. Although this can be a good thing, it comes at a cost of misdirection and complication. The core components for most applications aren't replaced much so the trade-off is a little harder to make.</p>
<p>I use an IoC container and appreciate the functionality but have to admit that I've noticed the trade-off: My code becomes more clear at the class level and less clear at the application level (i.e. visualizing control flow).</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871738#8717382Answer by James Black for Why do I need an IoC container as opposed to straightforward DI code?James Black2009-05-16T05:01:44Z2009-05-16T05:01:44Z<p>In the .NET world AOP isn't too popular, so for DI a framework is your only real option, whether you write one yourself or use another framework.</p>
<p>If you used AOP you can inject when you compile your application, which is more common in Java.</p>
<p>There are many benefits to DI, such as reduced coupling so unit testing is easier, but how will you implement it? Do you want to use reflection to do it yourself? </p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1447525#14475255Answer by Sam Saffron for Why do I need an IoC container as opposed to straightforward DI code?Sam Saffron2009-09-19T02:15:38Z2009-09-19T02:15:38Z<p>It sounds to me like <strong>you already built your own IoC container</strong> (using the various patterns which were described by Fowler) and are asking why someone else's implementation is better than yours. </p>
<p>So, you have a bunch of code that already works. And are wondering why you would want to replace it with someone else's implementation. </p>
<p><strong>Pros</strong> for considering a 3rd party IoC container</p>
<ul>
<li>You get bugs fixed for free</li>
<li>The library design may be better than yours</li>
<li>People may be already familiar with the particular library </li>
<li>The library may be faster than yours </li>
<li>It may have some features you wish you implemented but never had time to (Do you have a service locater?) </li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>You get bugs introduced, for free :) </li>
<li>The library design may be worse than yours </li>
<li>You have to learn a new API </li>
<li>Too many features you will never use </li>
<li>Its usually harder to debug code you did not write </li>
<li>Migrating from a previous IoC container may be tedious </li>
</ul>
<p>So, weigh your pros against your cons and make a decision. </p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1447550#14475507Answer by TrueWill for Why do I need an IoC container as opposed to straightforward DI code?TrueWill2009-09-19T02:32:38Z2009-09-19T02:32:38Z<p>Presumably no one is forcing you to use a DI container framework. You're already using DI to decouple your classes and improve testability, so you're getting many of the benefits. In short, you're favoring simplicity, which is generally a good thing.</p>
<p>If your system reaches a level of complexity where manual DI becomes a chore (that is, increases maintenance), weigh that against the team learning curve of a DI container framework.</p>
<p>If you need more control over dependency lifetime management (that is, if you feel the need to implement the Singleton pattern), look at DI containers.</p>
<p>If you use a DI container, use only the features you need. Skip the XML configuration file and configure it in code if that is sufficient. Stick to constructor injection. The basics of Unity or StructureMap can be condensed down to a couple of pages.</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1532247#15322473Answer by Aaron Lerch for Why do I need an IoC container as opposed to straightforward DI code?Aaron Lerch2009-10-07T15:10:20Z2009-10-07T15:10:20Z<p>As you continue to decouple your classes and invert your dependencies, the classes continue to stay small and the "dependency graph" continues to grow in size. (This isn't bad.) Using basic features of an IoC container makes wiring up all these objects trivial, but doing it manually can get very burdensome. For example, what if I want to create a new instance of "Foo" but it needs a "Bar". And a "Bar" needs an "A", "B", and "C". And each of those need 3 other things, etc etc. (yes, I can't come up with good fake names :) ).</p>
<p>Using an IoC container to build your object graph for you reduces complexity a ton and pushes it out into one-time configuration. I simply say "create me a 'Foo'" and it figures out what's needed to build one.</p>
<p>Some people use the IoC containers for much more infrastructure, which is fine for advanced scenarios but in those cases I agree it can obfuscate and make code hard to read and debug for new devs.</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1532254#1532254174Answer by Ben Scheirman for Why do I need an IoC container as opposed to straightforward DI code?Ben Scheirman2009-10-07T15:10:50Z2009-10-07T15:35:53Z<p>Wow, can't believe that Joel would favor this:</p>
<pre><code>var svc = new ShippingService(new ProductLocator(),
new PricingService(), new InventoryService(),
new TrackingRepository(new ConfigProvider()),
new Logger(new EmailLogger(new ConfigProvider())));
</code></pre>
<p>over this:</p>
<pre><code>var svc = IoC.Resolve<IShippingService>();
</code></pre>
<p>Many folks don't realize that your dependencies chain and become nested, and it quickly becomes unwieldy to wire them up manually. Even with factories, the duplication of your code is just not worth it.</p>
<p>IoC containers can be complex, yes. But for this simple case I've shown it's incredibly easy.</p>
<p><hr /></p>
<p><strong>Edit</strong>: okay let's justify this even more. Let's say you have some entities or model objects that you want to bind to a smart UI. This smart UI (we'll call it Shindows Morms) wants you to implement INotifyPropertyChanged so that it can do change tracking & update the UI accordingly.</p>
<p>"OK, that doesn't sound so hard" so you start writing.</p>
<p>You start with this: </p>
<pre><code>public class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime CustomerSince { get; set; }
public string Status { get; set; }
}
</code></pre>
<p>..and end up with <strong>this</strong>:</p>
<pre><code>public class UglyCustomer : INotifyPropertyChanged
{
private string _firstName;
public string FirstName
{
get { return _firstName; }
set
{
string oldValue = _firstName;
_firstName = value;
if(oldValue != value)
OnPropertyChanged("FirstName");
}
}
private string _lastName;
public string LastName
{
get { return _lastName; }
set
{
string oldValue = value;
_lastName = value;
if(oldValue != value)
OnPropertyChanged("LastName");
}
}
private DateTime _customerSince;
public DateTime CustomerSince
{
get { return _customerSince; }
set
{
DateTime oldValue = value;
_customerSince = value;
if(oldValue != value)
OnPropertyChanged("CustomerSince");
}
}
private string _status;
public string Status
{
get { return _status; }
set
{
string oldValue = value;
_status = value;
if(oldValue != value)
OnPropertyChanged("Status");
}
}
protected virtual void OnPropertyChanged(string property)
{
if(PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(property));
}
public event PropertyChangedEventHandler PropertyChanged;
}
</code></pre>
<p>That's disgusting plumbing code, and I maintain that if you're writing code like that by hand <strong>you're stealing from your client</strong>. There are better, smarter way of working.</p>
<p>Ever hear that term, work smarter, not harder?</p>
<p>Well imagine some smart guy on your team came up and said: "Here's an easier way"</p>
<p>If you make your properties virtual (calm down, it's not that big of a deal) then we can <em>weave</em> in that property behavior automatically. (This is called AOP, but don't worry about the name, focus on what it's going to do for you)</p>
<p>Depending on which IoC tool you're using, you could do something that looks like this:</p>
<pre><code>var bindingFriendlyInstance = IoC.Resolve<Customer>(new NotifyPropertyChangedWrapper());
</code></pre>
<p><strong>Poof!</strong> All of that manual INotifyPropertyChanged BS is now automatically generated for you, on every virtual property setter of the object in question.</p>
<p>Is this magic? <strong>YES</strong>! If you can trust the fact that this code does its job, then you can safely skip all of that property wrapping mumbo-jumbo. You've got business problems to solve.</p>
<p>Some other interesting uses of an IoC tool to do AOP:</p>
<p>Declarative & nested database transactions
Declarative & nested Unit of work
Logging
Pre/Post conditions (Design by Contract)</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1532305#1532305-8Answer by etechpartner for Why do I need an IoC container as opposed to straightforward DI code?etechpartner2009-10-07T15:20:05Z2009-10-07T15:20:05Z<p>Dependency Injection in an ASP.NET project can be accomplished with a few lines of code. I suppose there is some advantage to using a container when you have an app that uses multiple front ends and needs unit tests. </p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1533124#15331243Answer by Dan Finch for Why do I need an IoC container as opposed to straightforward DI code?Dan Finch2009-10-07T17:41:59Z2009-10-07T17:41:59Z<p>Don't use stuff because of pressure.</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1533197#15331970Answer by cwap for Why do I need an IoC container as opposed to straightforward DI code?cwap2009-10-07T17:53:51Z2009-10-07T17:53:51Z<p>Personally, I use IoC as some sort of structure map of my application (Yeah, I also prefer StructureMap ;) ). It makes it easy to substitute my ussual interface implementations with Moq implementations during tests. Creating a test setup can be as easy as making a new init-call to my IoC-framework, substituting whichever class is my test-boundary with a mock.</p>
<p>This is probably not what IoC is there for, but it's what I find myself using it for the most..</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1533421#15334212Answer by Matt Wrock for Why do I need an IoC container as opposed to straightforward DI code?Matt Wrock2009-10-07T18:38:57Z2009-10-07T18:38:57Z<p>I just so happen to be in the process of yanking out home grown DI code and replacing it with an IOC. I have probably removed well over 200 lines of code and replaced it with about 10. Yes, I had to do a little bit of learning on how to use the container (Winsor), but I'm an engineer working on internet technologies in the 21st century so I'm used to that. I probably spent about 20 minutes looking over the how tos. This was well worth my time.</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1533637#15336374Answer by floater81 for Why do I need an IoC container as opposed to straightforward DI code?floater812009-10-07T19:22:05Z2009-10-07T19:22:05Z<p>Whenever you use the "new" keyword, you are creating a concrete class dependency and a little alarm bell should go off in your head. It becomes harder to test this object in isolation. The solution is to program to interfaces and inject the dependency so that the object can be unit tested with anything that implements that interface (eg. mocks).</p>
<p>The trouble is you have to construct objects somewhere. A Factory pattern is one way to shift the coupling out of your POXOs (Plain Old "insert your OO language here" Objects). If you and your co-workers are all writing code like this then an IoC container is the next "Incremental Improvement" you can make to your codebase. It'll shift all that nasty Factory boilerplate code out of your clean objects and business logic. They'll get it and love it. Heck, give a company talk on why you love it and get everyone enthused.</p>
<p>If your co-workers aren't doing DI yet, then I'd suggest you focus on that first. Spread the word on how to write clean code that is easily testable. Clean DI code is the hard part, once you're there, shifting the object wiring logic from Factory classes to an IoC container should be relatively trivial.</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1539099#15390992Answer by unknown (google) for Why do I need an IoC container as opposed to straightforward DI code?unknown (google)2009-10-08T16:50:26Z2009-10-08T16:50:26Z<p>Dittos about Unity. Get too big, and you can hear the creaking in the rafters. </p>
<p>It never surprises me when folks start to spout off about how clean IoC code looks are the same sorts of folks who at one time spoke about how templates in C++ were the elegant way to go back in the 90's, yet nowadays will decry them as arcane. Bah ! </p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1540568#15405683Answer by Jeffrey Cameron for Why do I need an IoC container as opposed to straightforward DI code?Jeffrey Cameron2009-10-08T21:22:15Z2009-10-08T21:22:15Z<p>The biggest benefit of using IoC containers for me (personally, I use Ninject) has been to eliminate the passing around of settings and other sorts of global state objects. </p>
<p>I don't program for the web, mine is a console application and in many places deep in the object tree I need to have access to the settings or metadata specified by the user that are created on a completely separate branch of the object tree. With IoC I simply tell Ninject to treat the Settings as a singleton (because there is always only one instance of them), request the Settings or Dictionary in the constructor and presto ... they magically appear when I need them! </p>
<p>Without using an IoC container I would have to pass the settings and/or metadata down through 2, 3, ..., n objects before it was actually used by the object that needed it.</p>
<p>There are many other benefits to DI/IoC containers as other people have detailed here and moving from the idea of creating objects to requesting objects can be mind-bending, but using DI was very helpful for me and my team so maybe you can add it to your arsenal!</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/1559106#1559106-2Answer by finnsson for Why do I need an IoC container as opposed to straightforward DI code?finnsson2009-10-13T09:20:29Z2009-10-13T09:20:29Z<p>IoC frameworks are excellent if you want to...</p>
<ul>
<li><p>...throw away type safety. Many (all?) IoC frameworks forces you to execute the code if you want to be certain everything is hooked up correctly. "Hey! Hope I got everything set up so my initializations of these 100 classes won't fail in production, throwing null-pointer exceptions!"</p></li>
<li><p>...litter your code with globals (IoC frameworks are <em>all</em> about changing global states).</p></li>
<li><p>...write crappy code with unclear dependencies that's hard to refactor since you'll never know what depends on what.</p></li>
</ul>
<p>The problem with IoC is that the people who uses them used to write code like this</p>
<pre><code>public class Foo {
public Bar Apa {get;set;}
Foo() {
Apa = new Bar();
}
}
</code></pre>
<p>which is obviously flawed since the dependency between Foo and Bar is hard-wired. Then they realized it would be better to write code like</p>
<pre><code>public class Foo {
public IBar Apa {get;set;}
Foo() {
Apa = IoC<IBar>();
}
}
</code></pre>
<p>which is also flawed, but less obviously so.
In Haskell the type of <code>Foo()</code> would be <code>IO Foo</code> but you really don't want the <code>IO</code>-part and is should be a warning sign that something is wrong with your design if you got it.</p>
<p>To get rid of it (the IO-part), get all advantages of IoC-frameworks and none of it's drawbacks you could instead use an abstract factory.</p>
<p>The correct solution would be something like</p>
<pre><code>data Foo = Foo { apa :: Bar }
</code></pre>
<p>or maybe</p>
<pre><code>data Foo = forall b. (IBar b) => Foo { apa :: b }
</code></pre>
<p>and inject (but I wouldn't call it inject) Bar.</p>
<p>Also: see this video with Erik Meijer (inventor of LINQ) where he says that DI is for people who don't know math (and I couldn't agree more): <a href="http://www.youtube.com/watch?v=8Mttjyf-8P4" rel="nofollow">http://www.youtube.com/watch?v=8Mttjyf-8P4</a></p>
<p>Unlike Mr. Spolsky I don't believe that people who use IoC-frameworks are very smart - I simply believe they don't know math.</p>
<p>Down-vote me all you can (if you feel like it) but this is my opinion.</p>