Ninject in .NET Core

24,572

Solution 1

Ninject does not support .NET Core. You can check it's website to be sure if there is no version that supports it.

ASP.NET Core has its own Dependency Injection container build in. See here.

Solution 2

Ninject 3.3.0 was released September 26th 2017 and now targets .NET Standard 2.0 and thus also runs on .NET Core 2.0.

From the course of things (see issues/discussions on GitHub) it seems likely that some of the changes in the 4.0-beta will be reverted. I would not expected a 4.0 final shortly. Hence I would advise to go with the current version 3 release.

Solution 3

Just wanted to add; while both of the previous answers are correct in that ASP.Net core does provide built in dependency injection, it is NOT sufficient for more advanced scenarios. As it does not support a whole host of features that Ninject, AutoFac, Unity, or StructureMap supports.

At present, the only DI libraries that I am aware of that fully supports .net core are AutoFac and now Unity as well. It is very simple to add this in. The only thing you need to do to replace the built in DI is as follows. This example is for AutoFac but its almost identical for Unity it looks like.

First, replace the void on ConfigureServices in startup.cs with an IServiceProvider (dependency from AutoFac) like so:

public IServiceProvider ConfigureServices(IServiceCollection services)

Then create a container builder, build and resolve an IServiceProvider from ConfigureServices:

var builder = new ContainerBuilder();
builder.Populate(services);
var container = builder.Build();
return container.Resolve<IServiceProvider>();

I have a wrapper around the this second part that allows you to dynamically load and build different configurations using AutoFac modules, that I might be convinced to upload to GitHub or something if there is any interest.

Solution 4

Ninject does not support .Net Core, instead of this we can use dependency injection of .net core. following are the steps to implement.

  1. Go to startup.cs at public void ConfigureServices(IServiceCollection services)
  2. Add services.AddTransient<Interface, Class>();
  3. Go to the controller where you want to apply dependency injection.
  4. Create a global private Interface _propertyName;
  5. Pass the interface type variable to the constructor like

 public Constructor(Interface name)
 {
     _propertyName= name;
 }
  1. Now you can access the members of the class through _propertyName.
Share:
24,572
Dejan Dimčić
Author by

Dejan Dimčić

Updated on July 09, 2022

Comments

  • Dejan Dimčić
    Dejan Dimčić almost 2 years

    I am trying to install Ninject 3.3.2 in .NET Core, Released in May 2016. I got an error: The dependency Ninject 3.2.2 does not support framework .NETCoreApp, Version=v1.0. Does anybody had similar problem, and is there any solution for this?