By tag: NInject
0
kicks
Builing MVC aplication with multiple database support using Ninject
Tutorial on how you can use Ninject to build and MVC application with multiple databases. This approach will save you a lot of time and also allows to keep your code tidy.
0
kicks
Quick Introduction to Dependency Injection
An easy to understand introduction to dependency injection in .NET using the Ninject inversion of control container. The dependency injection principle is a design concept by which classes and entire software components can be designed to be isolatable, reducing tight coupling, promoting reusability...
0
kicks
To Inject Or Not To Inject
The benefits of Dependency Injection are very hard to see when only dealing with very simple examples. I tried to come up with an example that is simple enough to fit in a blog post, but is able to show the benefits of using Dependency Injection.
0
kicks
Extending Ninject to inject dependencies into Action Filters
In this last post of the series Simone shows the changes he did to Ninject to make it transparent for the developer to inject dependencies into ASP.NET Action Filters. And he also release the small integration library as opensource
0
kicks
How to use Ninject to inject dependencies into ASP.NET MVC ActionFilte
Simone shows us how to use Ninjet to inject dependencies to ASP.NET MVC.
0
kicks
How to use Ninject with ASP.NET MVC
By default, the ASP.NET MVC framework instantiate controllers calling their default constructor. This makes using Dependency Injection impossible. But, as almost everything inside that framework, the logic with which a controller is instantiated can be replaced with you own logic. This can be done c...
0
kicks
IoC libraries compared
A comparison of how to initialize various IoC libraries. Including AutoFac, Ninject, Spring.Net, StructureMap, Unity, and Windsor.
0
kicks
Comparing .NET DI (IoC) Frameworks, Part 2
A second part of popular IoC frameworks comparison.
0
kicks
Spoiled with Dependency Injection
This post could be interpreted as a starting point to get links and a few warm words to the choice of DI container available out there
0
kicks
Creating a binding factory for Ninject
A quick primer on setting up a Ninject factory so that you can easily start using it in your next project.
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
Playing Nice With Service Locators
An explanation of how you can use the Service Locator pattern along with dependency injection to make your code more flexible in certain cases.
0
kicks
Real Ultimate Power: Dependency Injection With Ninject
Using Ninject for Dependency Injection / IoC
0
kicks
Dependency Injection Using Ninject
This article discussed dependency injection, specifically using a new .NET framework called Ninject.