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
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:
- Why do we use quicksort instead of heapsort?Best solution by Yahoo! Answers
- Why does Parse use Javascript?Best solution by Stack Overflow
- Why cannot we use static keyword inside a method in java?Best solution by Stack Overflow
- Is there any why I can use my Sony Handycam as a webcam?Best solution by Yahoo! Answers
- Can I still use electronic fuel injection if I get a supercharger?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.