126
votes
21answers
10k views
Why do I need an IoC container as opposed to straightforward DI code?
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 …
42
votes
11answers
2k views
What is dependency injection?
There have been several questions already posted with specific questions about dependency injection, such as when to use it, what frameworks are there for it. However, here's the newbie question:
…
23
votes
13answers
3k views
Which C#/.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.
22
votes
2answers
992 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 …
19
votes
11answers
1k views
Which single IoC/DI container would you recommend using and why?
I'm asking this question because it's a good way to gauge how the community at large feels about the various containers/frameworks and why. Also, whilst my expertise may lie in .Net development, I am …
18
votes
12answers
1k views
What are the benefits of dependency injection containers?
I understand benefits of dependency injection itself. Let's take Spring for instance. I also understand benefits of other Spring featureslike AOP, helpers of different kinds, etc. I'm just wondering, …
17
votes
9answers
2k views
Dependency Injection vs Factory Pattern
Most of the examples quoted for usage of Dependency Injection, we can solve using the factory pattern as well. Looks like when it comes to usage/design the difference between dependency injection and …
16
votes
6answers
548 views
ASP.NET How to best create a test DB when doing TDD?
Hi folks,
what's the best practice for creating test persistence layers when doing an ASP.NET site (eg. ASP.NET MVC site)?
Many examples I've seen use Moq (or another mocking framework) in the unit …
15
votes
6answers
2k views
Difference between Dependency Injection (DI) & Inversion of Control (IOC)
I've been seeing a lot of references Dependency Injection (DI) & Inversion of Control (IOC), but I don't really know if there is a difference between them.
I would like to start using one or both …
14
votes
11answers
932 views
Understanding the need for a DI framework
This might be a naive question. I'm currently learning the Spring framework and dependency injection. While the basic principle of DI is rather easy to grasp, it's not immediately obvious why you need …
12
votes
9answers
307 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 …
12
votes
2answers
571 views
What is the Best Way to Organize a ASP.Net MVC Solution Using Dependency Injection?
I am early in development on a new ASP.Net MVC project and I using this project to get into DI. I'm pretty sure that I am going to go with Structure Map, but that isn't what I am asking about. What I …
12
votes
10answers
505 views
Does anyone have a good analogy for dependency injection?
Hello,
I have read a lot of articles on Dependency Injection as well as watched a lot of videos, but I still can't get my head around it. Does anyone have a good analogy to explain it?
I watched …
11
votes
11answers
766 views
dependency injection alternatives
I am looking at depency injection, I can see the benefits but I am having problems with the syntax it creates. I have this example
public class BusinessProducts
{
IDataContext _dx;
…
11
votes
8answers
474 views
Unit Testing in web applications that use databases
Hi,
I am building a web application that uses the database for Users, Security/roles, and to store content.
It seems a little daunting to me to begin on the road of unit testing because I have to …
