Tagged Questions
In object oriented languages, an inversion of control container (ioc-container) can be used for configuring and managing objects in an application.
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 ...
46
votes
6answers
4k views
How do the major C# DI/IoC frameworks compare?
At the risk of stepping into holy war territory, What are the strengths and weaknesses of these popular DI/IoC frameworks, and could one easily be considered the best? ..:
Ninject
Unity
...
37
votes
11answers
7k views
What's the simplest IOC container for C#?
What's the simplest IOC container for C#? Is simple to learn and get productive with for a small app. In my case a winforms app which I want to abstract the data layer for later potential migration to ...
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 ...
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 ...
24
votes
2answers
6k views
Comparing Castle Windsor, Unity and StructureMap
In a follow up to Krzysztof’s statement that Windsor does a lot more than other IoC’s, I wanted to understand how these IoC’s stack up against each other and the benefits/additional facilities that ...
22
votes
1answer
725 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 ...
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
2answers
1k views
Why shouldn't I use Unity?
I'm using the Unity IoC container. It really wasn't a decision I made, it just came with Prism, and I've just stuck with it. I've never used any other IoC frameworks, and I must admit I'm quite happy ...
19
votes
8answers
1k views
Why are IOC containers unnecessary with dynamic languages
Someone on the Herding Code podcast No. 68, http://herdingcode.com/?p=231, stated that IOC containers had no place with Python or Javascript, or words to that effect. I'm assuming this is ...
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).
...
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
466 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 ...
14
votes
4answers
360 views
IoC Factory: Pros and contras for Interface versus Delegates
Any place where you need a run-time value to construct a particular dependency, Abstract Factory is the solution.
My qestion is: Why do many sources favor FactoryInterface over FactoryDelegate to ...
13
votes
2answers
3k views
Is it better to create a singleton to access unity container or pass it through the application?
I am dipping my toe into using a IoC framework and I have choosen to use Unity. One of the things that I still don't fully understand is how to resolve objects deeper into the application. I suspect I ...
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
150 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
2answers
4k views
Creating an instance using Ninject with additional parameters in the constructor
I decided to start using Ninject and face an issue. Say I have the following scenario.
I have an IService interface and 2 classes implementing this interface. And also I have a class, which has a ...
12
votes
4answers
2k views
Is there a Dependency Injection Framework for Delphi or Free Pascal?
For some of my Delphi (Win 32) / Free Pascal projects I consider using Dependency Injection.
Are there already implementations available (or in development) which provide some basic DI (IoC) ...
11
votes
4answers
421 views
Are we using IoC effectively?
So my company uses Castle Windsor IoC container, but in a way that feels "off":
All the data types are registered in code, not the config file.
All data types are hard-coded to use one interface ...
10
votes
2answers
286 views
Autofac: Hiding multiple contravariant implementations behind one composite
I was triggered by this SO question about (.NET 4.0) covariance and contravariance support for Autofac, and now I'm trying to achieve something similar, but without any luck.
What I am trying to ...
10
votes
2answers
349 views
Arguments against Inversion of Control containers
Seems like everyone is moving towards IoC containers. I've tried to "grok" it for a while, and as much as I don't want to be the one driver to go the wrong way on the highway, it still doesn't pass ...
10
votes
4answers
4k views
MVC, EF - DataContext singleton instance Per-Web-Request in Unity
I have a MVC 3 web application, where I am using the Entity Framework for the data access. Furthermore, I have made a simpel use of the repository pattern, where e.g. all Product related stuff is ...
10
votes
5answers
515 views
Remove Dependency on IoC Container
After reading more and more about IoC containers, I read this post about not having IoC.Resolve() etc in your code.
I'm really curious to know then, how can I remove the dependency on the container?
...
10
votes
3answers
799 views
IoC Containers and Domain Driven Design
I've been searching for guidance for using IoC containers in domain driven design. Evan's book unfortunately doesn't touch on the subject. The only substantial guidelines I could find on the internet ...
10
votes
1answer
3k views
Ninject 2.0 Constructor parameter - how to set when default constructor is also present?
I'm new to IOC containers and learning Ninject. I've using version 2.0, freshly downloaded from Github.
I'm trying to set a string parameter on a constructor when a default constructor is also ...
10
votes
2answers
1k views
Taking my MVC to the next level: DI and Unit of Work
I have looked at simpler applications like Nerddinner and ContactManager as well as more complicated ones like Kigg. I understand the simpler ones and now I would like to understand the more complex ...
9
votes
1answer
344 views
Avoiding Service Locator Antipattern with legacy app not designed for IOC
I have read often that Service Locators in IOC are an anti-pattern.
Last year we introduced IOC (Ninject specifically) to our application at work. The app is legacy, it's very big and it's ...
9
votes
3answers
360 views
I'm confused about interface abstractions when using IoC
I've recently been trying to learn IoC, and have a couple questions based on the following code:
public class WarriorModule : NinjectModule
{
public override void Load()
{
...
9
votes
4answers
679 views
Replace assembly at runtime with .NET
Is there a way with a plugin system (I would use with an IoC container) to load one version of an assembly at runtime and then replace that DLL while the AppDomain is running? I don't want to restart ...
9
votes
3answers
1k views
Ninject and DataContext disposal
I'm using Ninject to retrieve my DataContext from the kernel and I was wondering if Ninject automatically disposes the DataContext, or how he handles the dispose() behaviour. From own experiences I ...
9
votes
5answers
1k views
Not understanding where to create IoC Containers in system architecture
Say I have the following 4 .net assemblies:
Winforms UI
Business Logic
SQL Server Data Access (implementing an IRepository)
Common Interfaces (definition of IRepository etc.)
My business logic ...
8
votes
1answer
353 views
Delphi Dependency Injection: Framework vs Delegating Constructor
Why would you use a Dependency Injection Framework when you can simple use the following pattern?
unit uSomeServiceIntf;
interface
type
ISomeService = interface
procedure SomeMethod;
end;
...
8
votes
3answers
358 views
Configure Ninject to Resolve null when using ToMethod
How can I configure Ninject to resolve null with my constructor injection? I am using ToMethod with a factory method and InTransientScope. My factory is designed to return null if certain things are ...
8
votes
1answer
688 views
Inject Generic Implementation using Guice
I would like to be able to inject a generic implementation of a generic interface using Guice.
public interface Repository<T> {
void save(T item);
T get(int id);
}
public ...
8
votes
1answer
303 views
When to use an IOC container?
I'm trying to understand when I should use a container versus manually injecting dependencies. If I have an application that uses a 1-2 interfaces and only has 1-2 concrete implementations for each ...
8
votes
3answers
641 views
Problem Implementing StructureMap in VB.Net Conversion of SharpArchitecture
I work in a VB.Net environment and have recently been tasked with creating an MVC environment to use as a base to work from. I decided to convert the latest SharpArchitecture release (Q3 2009) into ...
8
votes
3answers
2k views
Ninject kernel creation inside a class library
I have a class that has dependencies that I've wired up with Ninject.
public interface IFoo {}
public class MyObject {
[Inject]
IFoo myfoo;
}
In the real implementation I'm using ...
7
votes
4answers
104 views
(Automatic) Dependency Injection Binding Mechanisms
The two common mechanisms for creating dependency injection bindings, such as through an IOC container, is from an XML configuration or a block of imperative code. In these cases, the key value pair ...
7
votes
2answers
198 views
How do I ensure that a given dependency is included in my app with the Spring Framework?
This is going to be a tough question to describe, but here goes.
We are using the Delphi Spring Framework. (http://code.google.com/p/delphi-spring-framework/)
Let's say I have UnitA that declares ...
7
votes
4answers
420 views
How should you use UnitofWork pattern on my asp.net-mvc site (using nhibernate and ninject)
i have followed the pattern on this site to hook up ninject and nhibernate to my asp.net-mvc3 site.
Here is the code in my global.aspx.cs:
internal class ServiceModule : NinjectModule
{
public ...
7
votes
2answers
672 views
Lightweight ioc-Container for Java?
Coming from .NET, I'm used to Ninject, that's a small simple ioc-container. Is there anything simple and lightweight for Java?
The simpler the better!
Thanks
7
votes
1answer
3k views
MEF: Where should I put the CompositionContainer?
I have been using the Windsor IoC Container for my web-based application, to resolve the data access layer implementation the application should use.
The web application's UI will consist of pages, ...
7
votes
3answers
1k views
Unity and WCF Library: Where to load unity in a wcf library?
can anyone help?
I have created a WCF library (not application) and i will be hosting this in a SVC IIS page..
But i was wanting to load the unity stuff in generic place... I could load it in the ...
6
votes
7answers
279 views
How can one use an existing instance to select a type to create in an IoC container
this is probably just a newbie question, but I have the following:
public class FooSettings {}
public class BarSettings {}
public class DohSettings {}
// There might be many more settings types...
...
6
votes
1answer
474 views
Setting up Ninject with the new WCF Web API
So I've been playing around with the latest release of the WCF Web API and decided I wanted to dive into implementing Ninject with it.
Based off what I've read I need to implement the interface ...
6
votes
6answers
590 views
Self injection with Spring
I tried the following code with Spring 3.x which failed with BeanNotFoundException and it should according to the answers of a question which I asked before - Can I inject same class using Spring?
...
6
votes
2answers
587 views
Castle Windsor strange behaviour wth property injection and factory method
I am using Castle Windsor 2.5.1 in an ASP.NET MVC project and using property injection to create an object which I expect to always be available on a base controller class. I am using a factory to ...
6
votes
1answer
238 views
How do you handle 'deep' dependencies with IoC and DI?
I am new to IoC and I am playing with Unity. Let' say you have a solution with 'n' projects and you want to use Unity to register and resolve the dependencies. Lets say your composition root is in ...