Introduction
This post is about quick overview of how to do dependency injection using ninject in MVC 4 application.
Following step by step guideline give you basic idea of how to implement your environment bit clear in separation of concern.
Keep in mind as default template of mvc application has direct database call in the controller which violate separation of concern and it is not good for large application when it getting bigger.
In service project we have interface like this,
Before that you have to install Ninject and Ninject.Web.Common from the nuget gallary.
now insert following code to override the default constructor creation of your application
Now you’re done with dependency injection on your environment.
Background
Many people creating mvc applications just come with out of the box template. But if you move bit advance you have to be aware of how to decouple the components.Following step by step guideline give you basic idea of how to implement your environment bit clear in separation of concern.
Demonstration
In your application you have service layer implemented (better if you can create separate project for it). Form this layer you can call to database layer.Keep in mind as default template of mvc application has direct database call in the controller which violate separation of concern and it is not good for large application when it getting bigger.
In service project we have interface like this,
public interface IMemberService
{
void AddMember();
void DeleteMember();
void UpdateMember();
}
public class MemberService:IMemberService
{
public void AddMember()
{
throw new NotImplementedException();
}
public void DeleteMember()
{
throw new NotImplementedException();
}
public void UpdateMember()
{
throw new NotImplementedException();
}
}
Now you are going to do dependency injection for controller,Before that you have to install Ninject and Ninject.Web.Common from the nuget gallary.
now insert following code to override the default constructor creation of your application
public class NinjectControllerFactory : DefaultControllerFactory
{
private IKernel ninjectKernel;
public NinjectControllerFactory()
{
ninjectKernel = new StandardKernel();
AddBindings();
}
protected override IController GetControllerInstance(RequestContext requestContext, Type controllerType)
{
return controllerType == null? null : (IController)ninjectKernel.Get(controllerType);
}
private void AddBindings()
{
ninjectKernel.Bind<Service.MemberService.IMemberService>().To<Service.MemberService.MemberService>();
}
}
Now you need to apply this changes when application get start class(globle.asax) .insert following line to Application_Start() event.ControllerBuilder.Current.SetControllerFactory(new NinjectControllerFactory());