IMPORTANT: This version of Sitefinity CMS is out of support and the respective product documentation is no longer maintained and can be outdated. Use the version selector to view a supported product version.
One of the most common patterns in programming is the Inversion of Control (IoC) design pattern. Feather provides a smooth integration of Ninject Dependency Injection (DI) framework and gives you the ability to use the IoC pattern when working with ASP.NET Web API.
The advantages of using the IoC design pattern are the following:
The following article demonstrates how to use Dependency Injection for the constructor of a Web API controller. To achieve this, you create a custom Web API controller and define its constructor parameters via the Ninject API.
Ninject is a lightweight dependency injection framework for .NET applications. It helps you split your application into a collection of loosely-coupled, highly-cohesive pieces, and then glue them back together in a flexible manner. By using Ninject to support your software’s architecture, your code becomes easier to write, reuse, test, and modify.
PREREQUISITES: You must have installed Feather 1.4.410.0 or above.
Ninject.Web.WebApi.WebHost
Ninject.Web.WebApi
NOTE: The Ninject and the Ninject.Web.Common packages must be version 3.2.2.0 and 3.2.3.0, respectively.
public interface IAnimalService
{
//define your service methods here
}
public class AnimalService: IAnimalService
//implement your service methods here
~/Mvc/Controllers
PetController
public class PetController : ApiController
public PetController(SitefinityWebApp.Mvc.Services.IAnimalService animalService)
public string Get()
return "Rabbit";
Global.asax
RESULT: You are able to access your custom Web API controller by requesting localhost/api/Pet URL in a browser.
localhost/api/Pet
Back To Top
To submit feedback, please update your cookie settings and allow the usage of Functional cookies.
Your feedback about this content is important