Microsoft changed the way how dependency injection (DI) is done in ASP.NET vNext. In previous versions of ASP.NET there were different en...
Showing posts with label Dependency Injection. Show all posts
Showing posts with label Dependency Injection. Show all posts
Sunday, August 9, 2015
Monday, June 3, 2013
Dependency Injection / Inversion of Control–A Concrete Example-Roll your own
How exactly does Dependency Injection work? It seemed rather mysterious to me from the implementation point of view. Some people look at ...
Design pattern – Inversion of control and Dependency injection
In this section we will discuss about how IOC and DI can help us build loosely coupled software architecture. I am not sure should we cal...
Inversion of Control Containers and the Dependency Injection pattern
In the Java community there's been a rush of lightweight containers that help to assemble components from different projects into a c...
Tuesday, December 4, 2012
Dependency Injection In PHP
Dependency injection has been a frequent subject of discussion among many corporate developers in the past few years. Many feared that they...
Saturday, November 24, 2012
Dependency Injection and Service Locator
Dependency injection is a interface programing technique which is based on altering class behavior without the changing the class intern...
Tuesday, November 20, 2012
Dependency Injection With Ninject
Ninject is a lightweight dependency injection framework for .NET applications. It helps you split your application into a collection of loo...
How to Use Dependency Injection (Ninject) with WCF Services
I spent a lot of time late last week trying to figure out exactly how to set up dependency injection for a WCF service I was developing on ...
Sunday, November 18, 2012
Dependency Injection Using Ninject
"Ninject is a lightweight dependency injection framework for .NET applications. It helps you split your application into a collectio...
Dependency Injection (DI) – Hello World with Ninject
I am going to start with explaining a simple scenario where we could use the DI pattern. I will be using Ninject to write dependency in...