By tag: DependencyInjection
0
kicks
Dependency Injection in Asp.net MVC using MVC Contrib - on code
A simple introduction to dependency injection in asp.net MVC
0
kicks
Using StructureMap with the ASP.NET MVC framework
This is my first blog post ever :) In it I will try to show you how to use StructureMap with the new ASP.NET MVC framework. You will need to have some basic knowledge about the ASP.NET MVC framework and Dependency Injection (DI)/Inversion of Control (IoC). The method described is not limited to Stru...
0
kicks
Unity - Dependency Injection and Inversion of Control Container
Dependency injection is a programming technique to reduce component coupling. Dependency injection is also commonly known as “inversion of control” or IoC or sometimes as The Hollywood Principle - "Don’t call us, we’ll call you”. The goal of dependency injection is to separate the concerns of h...
0
kicks
Comparing .NET DI (IoC) Frameworks, Part 2
A second part of popular IoC frameworks comparison.
0
kicks
Comparing .NET DI (IoC) Frameworks, Part 1
A first part of feature comparison between the most popular DI (IoC) Frameworks: Castle, Unity, Autofac, Ninject, StructureMap and Spring.Net.
0
kicks
Dependency Injection: Factory vs Container - Unity
As application size and complexity increase it becomes more and more difficult to reuse existing components and integrating these components to form an interconnected architecture because of the dependencies of the components. One way to reduce dependencies is by using Dependency Injection, which al...
0
kicks
Dependency Injection, Duck Typing, & More Coming to .Net (Natively)
Krzysztof Cwalina reveals details on .Net's upcoming Managed Extensibility Framework. "MEF is a set of features referred in the academic community and in the industry as a Naming and Activation Service (returns an object given a “name”), Dependency Injection (DI) framework, and a Structural Ty...
0
kicks
Real Ultimate Power: Dependency Injection With Ninject
Using Ninject for Dependency Injection / IoC
0
kicks
Quick And Simple DependencyInjection With StructureMap
A very quick guide to IoC using StructureMap.
0
kicks
Understanding IoC Container
Very nice explanation of base principles of IoC container with sample implementation.
0
kicks
Test Supported Development (TSD) is not Test Driven Development (TDD)
"Test Supported Development" (TSD) intends to characterize the creation of tests during ANY/ALL stages of development, that is, tests are not necessarily created before their respective System Under Test (SUT), but not necessarily created as an afterthought, either...
0
kicks
Dependency Injection Objection
"The amount of heat I anticipate receiving is so disproportional to the probable light gained that it makes me hesitate."
0
kicks
Circumventing statics and singletons
A useful dependency injection pattern to make singletons and static members somewhat testable and decouple implementations.