HI WELCOME TO SIRIS

What is IoC Container or DI Container

The terms Dependency Injection (DI) & Inversion of Control (IoC) are generally used interchangeably to describe the same design pattern. Hence some people say IoC Container and some people says DI container but both terms indicate to the same thing. So don't be confused by the terminology.

What is DI Container

A DI Container is a framework to create dependencies and inject them automatically when required. It automatically creates objects based on the request and injects them when required. DI Container helps us to manage dependencies within the application in a simple and easy way.

We can also manage application dependencies without a DI Container, but it will be like as POOR MAN’S DI and we have to do more work, to make it configured and manageable.

List of popular DI Container for .Net

Today, there are a lot of excellent DI Containers that are available for .NET. Here, I am sharing the list of most useful DI Container for .Net framework.

Castle Windsor

  1. Based on the Castle MicroKernel.
  2. Well documented and used by many.
  3. Understands Decorator
  4. Typed factories
  5. Commercial support available

StructureMap

  1. It has been around since June 2004
  2. It is actively developed and works in many cases

Spring.NET

  1. INTERCEPTION
  2. Comprehensive documentation
  3. Commercial support available

Autofac

  1. Easy to learn API
  2. second-generation DI Container
  3. Commercial support available

Unity

  1. INTERCEPTION
  2. Good documentation
  3. Consistent API

Ninject

  1. Easy to learn API
  2. Second-generation DI Container
What do you think?
I hope you will use one of the IoC containers within your .NET application. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.