Why should I use Dependency Injection?

Why i shoud use dependency injection?

  • Why dependency injection is better way, then other. What is your opinion?

  • Answer:

    Dependency Inversion is one of the http://en.wikipedia.org/wiki/Solid_%28object-oriented_design%29 Decoupling of dependencies allows a dependency to be replaced by any 'compatable' interface. This is notably used in TDD to mock / stub out dependencies when building unit tests. Some alternatives are: Direct instantiation of dependencies (e.g. new) - no encapsulation at all. Classfactory (non DIP) - encapsulation, but no decoupling of dependencies. Service Locator (also DIP) - has the benefit of not exposing dependencies (DI typically uses Get/Setters or Constructor injection)

Andrei Andrushkevich at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

Class without any dependency injection: class MyRepository { MyDatabase database = new MyDatabase(); public IEnumerable<MyEvent> GetEventsAfter(DateTime date) { return this.database.GetQueryable<MyEvent>() .Where(e => e.DateLogged > date); } } The problem here is testing whether GetEventsAfter works. You need access to an actual database with data set up specifically for testing. That introduces overhead in actually accessing the database (you want these tests to be fast - they're checking logic, not how quickly you can access data). It also has the problem of what happens if someone changes/deletes the test data? Will your tests start to fail even though they're actually correct? With some dependency injection: class MyRepository { IMyDatabase database; public MyRepository(IMyDatabase database) { this.database = database; } public IEnumerable<MyEvent> GetEventsAfter(DateTime date) { return this.database.GetQueryable<MyEvent>() .Where(e => e.DateLogged > date); } } Here you can pass a class that mocks the IMyDatabase interface to return whatever data you need for a particular test to pass. In the live system the value passed in as IMyDatabase would be the concrete class that actually provides access to the underlying database.

Dave

Dependency injection makes it easy to change your code for different customers, thus allowing you to create flexible code. It even enables you to change behavior at runtime. Why wouldn't you use it?

J. Vermeire

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.