Inversion of control (IoC) is an abstract principle describing an aspect of some software architecture designs in which the flow of control of a system is inverted in comparison to procedural programming.
314
votes
22answers
26k views
Why do I need an IoC container as opposed to straightforward DI code? [closed]
I've been using Dependency Injection (DI) for a while, injecting either in a constructor, property, or method. I've never felt a need to use an Inversion of Control (IoC) container. However, the ...
162
votes
13answers
28k views
What is Inversion of Control?
Inversion of Control (or IoC) can be quite confusing when it is first encountered.
What is it?
What problems does it solve?
When is it appropriate and when not?
125
votes
15answers
22k views
Which .NET Dependency Injection frameworks are worth looking into?
Which C#/.NET Dependency Injection frameworks are worth looking into?
And what can you say about their complexity and speed.
51
votes
4answers
5k views
Dependency Inject (DI) “friendly” library
I'm pondering the design of a C# library, that will have several different high level functions. Of course, those high-level functions will be implemented using the SOLID class design principles as ...
51
votes
6answers
17k views
Enterprise Library Unity vs Other IoC Containers
What's pros and cons of using Enterprise Library Unity vs other IoC containers (Windsor, Spring.Net, Autofac ..)?
49
votes
18answers
2k views
Must Dependency Injection come at the expense of Encapsulation?
If I understand correctly, the typical mechanism for Dependency Injection is to inject either through a class' constructor or through a public property (member) of the class.
This exposes the ...
44
votes
7answers
10k views
What do programmers mean when they say, “Code against an interface, not an object.”?
I've started the very long and arduous quest to learn and apply TDD to my workflow. I'm under the impression that TDD fits in very well with IoC principles.
After browsing some of TDD tagged ...
40
votes
14answers
3k views
Dependency injection through constructors or property setters?
I hope this isn't a duplicate. I did a search but there are a lot of dependency injection posts and I couldn't find any needles in the haystack.
So here's my question. I'm refactoring a class and ...
37
votes
3answers
3k views
What is Castle Windsor, and why should I care?
I'm a long-time Windows developer, having cut my teeth on win32 and early COM. I've been working with .Net since 2001, so I'm pretty fluent in C# and the CLR. I'd never heard of Castle Windsor until ...
35
votes
4answers
4k views
MEF vs. any IoC
Looking at Microsoft's Managed Extensibility Framework (MEF) and various IoC containers (such as Unity), I am failing to see when to use one type of solution over the other. More specifically, it ...
34
votes
3answers
4k views
Using IoC for Unit Testing
How can a IoC Container be used for unit testing? Is it useful to manage mocks in a huge solution (50+ projects) using IoC? Any experiences? Any C# libraries that work well for using it in unit tests?
...
33
votes
3answers
7k views
MEF (Managed Extensibility Framework) vs IoC/DI
What problems does MEF (Managed Extensibility Framework) solves that cannot be solved by existing IoC/DI containers?
32
votes
8answers
2k views
How to explain Dependency Injection to a 5-year old
Could anybody point out a good dependency injection tutorial? I found a ton on Google but none of them that would assume the reader is a just Java beginner.
Thanks!
30
votes
4answers
4k views
Is there a pattern for initializing objects created via a DI container
I am trying to get Unity to manage the creation of my objects and I want to have some initialization parameters that are not known until run-time:
At the moment the only way I could think of the way ...
30
votes
5answers
4k views
Can anyone recommend a IOC Container for C++?
I miss dependency injection more than all the raindrops in the ocean.
25
votes
4answers
2k views
Dependency Injection Constructor Madness
I find that my constructors are starting to look like this:
public MyClass(Container con, SomeClass1 obj1, SomeClass2, obj2.... )
with ever increasing parameter list. Since "Container" is my ...
25
votes
3answers
855 views
How to avoid anemic domain models, or when to move methods from the entities into services
I have a common scenario that I am looking for some guidance from people more experienced with DDD and Domain Modeling in general.
Say I start out building a blog engine, and the first requirement is ...
25
votes
1answer
3k views
Where should I do dependency injection with Ninject 2?
I have a solution with two relevant (to this question) projects, and a few others;
Class library with functionality used by several other projects.
ASP.NET MVC application.
My question is ...
25
votes
6answers
6k views
.NET IoC Container Comparisons
With so many IoC containers is there a decision matrix to help in narrowing them down based on features, supported platforms, etc.?
24
votes
6answers
3k views
Castle Windsor Are There Any Downsides?
I have been looking into the castle project and specifically windsor. I have been so impressed with what is possible with this technology and the benefits of having a such a loosely coupled system are ...
23
votes
8answers
3k views
Why is IoC / DI not common in Python?
In Java IoC / DI is a very common practice which is extensively used in web applications, nearly all available frameworks and Java EE. On the other hand, there are also lots of big Python web ...
22
votes
1answer
723 views
Why not use an IoC container to resolve dependencies for entities/business objects?
I understand the concept behind DI, but I'm just learning what different IoC containers can do. It seems that most people advocate using IoC containers to wire up stateless services, but what about ...
22
votes
5answers
3k views
Usage of IoC Containers; specifically Windsor
I think the answer to this question is so obivous that noone has bothered writing about this, but its late and I really can't get my head around this.
I've been reading into IoC containers (Windsor ...
22
votes
2answers
5k views
How to use Castle Windsor with ASP.Net web forms?
I am trying to wire up dependency injection with Windsor to standard asp.net web forms. I think I have achieved this using a HttpModule and a CustomAttribute (code shown below), although the solution ...
21
votes
5answers
1k views
how to implement IOC without a global static service (non-service locator solution)?
we want to use Unity for IOC.
All i've seen is the implementation that there is one global static service (let's call it the the IOCService) which holds a reference to the Unity container, which ...
20
votes
4answers
2k views
What should I consider when choosing a dependency injection framework for .NET
see also Which C#/.NET Dependency
Injection frameworks are worth looking
into?
There are now many dependency injection frameworks to choose from. You used to often be forced to use a given ...
19
votes
11answers
4k views
Dependency Injection book recommendation(s) [closed]
It seems like there are very few books (yes, I read books) on Dependency Injection. The Amazon tag for "dependency injection" lists only a few titles, and all of them are specifically about Spring for ...
19
votes
9answers
3k views
Which Dependency Injection Tool Should I Use?
I am thinking about using Microsoft Unity for my Dependency Injection tool in our User Interface.
Our Middle Tier already uses Castle Windsor, but I am thinking I should stick with Microsoft.
Does ...
18
votes
7answers
2k views
IoC.Resolve vs Constructor Injection
I heard a lot of people saying that it is a bad practice to use IoC.Resolve(), but I never heard a good reason why (if it's all about testing than you can just mock the container, and you're done).
...
18
votes
1answer
2k views
Design - Where should objects be registered when using Windsor
I will have the following components in my application
DataAccess
DataAccess.Test
Business
Business.Test
Application
I was hoping to use Castle Windsor as IoC to glue the layers together but I am ...
18
votes
7answers
2k views
How do you reconcile IDisposable and IoC?
I'm finally wrapping my head around IoC and DI in C#, and am struggling with some of the edges. I'm using the Unity container, but I think this question applies more broadly.
Using an IoC ...
17
votes
5answers
521 views
Pros and Cons of Inversion of Control
Suppose I have a stream of [acme] objects that I want to expose via an API. I have two choices, callbacks and iterators.
API #1: Callbacks
// API #1
// This function takes a user-defined callback
...
17
votes
4answers
6k views
Can someone explain Microsoft Unity?
I've been reading the articles on MSDN about Unity (Dependency Injection, Inversion of Control), but I think I need it explained in simple terms (or simple examples). I'm familiar with the MVPC ...
17
votes
3answers
2k views
NInject: Where do you keep your reference to the Kernel?
I'm using NInject on a new web application and there are two things that are unclear to me:
Don't I need to keep a reference to the Kernel around (Session/App variable) to insure that GC doesn't ...
16
votes
5answers
465 views
IoC and ASP.NET MVC, where does it all begin?
I see "IoC" and "DI" mentioned pretty much everywhere for ASP.NET MVC. While I'm well aware of ... 'kind of' what these are, it's one of those almost ambiguous, amorphous floating concepts that seems ...
16
votes
3answers
4k views
Android and Dependency Injection
I've been looking around, in vain, for some information on using a dependency injection container in Android development. Specifically, how to override the creation of an Activity in a way that will ...
16
votes
3answers
1k views
Is there a good/proper way of solving the dependency injection loop problem in the ASP.NET MVC ContactsManager tutorial?
If you don't know what I'm talking about either go through the tutorial and try to add dependency Injection yourself or try your luck with my explanation of the problem.
Note: This problem isn't ...
16
votes
7answers
2k views
When not to use IoC and DI?
I see lots of articles saying how great IoC and DI are and none about why it isn't so great because it can make code more complex. I see also that IoC shouldn't be in the core part of your code but ...
16
votes
7answers
4k views
Is Dependency Injection possible with a WPF appliction?
I want to start using dependency injection in my WPF application, largely for better unit testability. My app is mostly constructed along the M-V-VM pattern.
I'm looking at autofac for my IoC ...
15
votes
2answers
384 views
Is this a problem typically solved with IOC?
My current application allows users to define custom web forms through a set of admin screens. it's essentially an EAV type application. As such, I can't hard code HTML or ASP.NET markup to render a ...
15
votes
4answers
2k views
Is MEF a replacement for System.Addin?
Is the Managed Extensibility Framework a replacement for System.Addin? Or are they complementary?
14
votes
13answers
1k views
Which patterns for loose coupling do you use most?
Lately I have seen a lot of blog posts concerning how to build loosely coupled applications. Which patterns do you use most when creating loosely coupled applications? Dependency Injection? Inversion ...
13
votes
6answers
889 views
Inversion of Control & Dependency Injection in the .NET Framework
Is there any specific example/instance of DI being applied as an architectural principle or design pattern in the .NET Framework itself? Do any (or many) of the types in the framework/BCL conform to ...
13
votes
8answers
319 views
Is Dependency Injection a pattern and, is this it?
I was having a heated debate with one of my colleagues on dependency injection, and realized I didn't quite know all the facts on the subject.
So, take this code (just so you know,we're using Castle ...
13
votes
2answers
1k views
Using Ninject IOC to replace a factory
I've got a factory method inside a parser. Essentially as I load a token I look up the handler for that token, or drop through to the default handler. I've implemented this as a switch and as a ...
13
votes
10answers
7k views
Code your own IOC Container
Has anyone out there written their own IOC Container in C#? Or do the vast majority of folks use the various frameworks such as Spring. What are the pro's and con's of each?
12
votes
2answers
149 views
Are primitive constructor parameters a bad idea when using an IoC Container?
Standard newbie disclaimer: I'm new to IoC and am getting mixed signals. I'm looking for some guidance on the following situation please.
Suppose I have the following interface and implementation:
...
12
votes
1answer
337 views
What is a composition root in the context of Dependency Injection
I am exploring dependency injection and the term composition root is used all over the place. So what is it?
12
votes
3answers
516 views
MVVM and IOC: Handling View Model's Class Invariants
This is an issue I've been struggling with since I started using MVVM, first in WPF and now in Silverlight.
I use an IOC container to manage the resolution of Views and ViewModels. Views tend to be ...
12
votes
2answers
2k views
Abstract factory pattern on top of IoC?
I have decided to use IoC principles on a bigger project. However, i would like to get something straight that's been bothering me for a long time. The conclusion that i have come up with is that an ...