NInject is a dependency injection framework for .NET applications.
111
votes
6answers
20k views
How do the major C# DI/IoC frameworks compare?
At the risk of stepping into holy war territory, What are the strengths and weaknesses of these popular DI/IoC frameworks, and could one easily be considered the best? ..:
Ninject
Unity
...
31
votes
1answer
5k views
Where should I do Injection with Ninject 2+ (and how do I arrange my Modules?)
I have a solution with two relevant (to this question) projects, and a few others;
Class library with functionality used by several other projects.
ASP.NET MVC application.
My question is ...
16
votes
1answer
2k views
Does Ninject support Func (auto generated factory)?
Autofac automatically generates factories for Func<T>; I can even pass parameters.
public class MyClass
{
public MyClass(Func<A> a, Func<int, B> b)
{
var _a = a();
...
39
votes
5answers
7k views
How can I implement Ninject or DI on asp.net Web Forms?
There are plenty of examples for having it worked on an MVC application. How is it done on Web Forms?
15
votes
3answers
6k views
Dependency Injection with Ninject and Filter attribute for asp.net mvc
I'm writing a custom Authorization Filter for asp.net mvc 3. I need to inject a userservice into the class but I have no idea how to do this.
public class AuthorizeAttribute : FilterAttribute, ...
28
votes
1answer
11k views
Creating an instance using Ninject with additional parameters in the constructor
I decided to start using Ninject and face an issue. Say I have the following scenario.
I have an IService interface and 2 classes implementing this interface. And also I have a class, which has a ...
2
votes
2answers
282 views
Looking for a Ninject scope that behaves like InRequestScope
On my service layer I have injected an UnitOfWork and 2 repositories in the constructor. The Unit of Work and repository have an instance of a DbContext I want to share between the two of them. How ...
8
votes
1answer
2k views
Validation: How to inject A Model State wrapper with Ninject?
I was looking at this tutorial http://asp-umb.neudesic.com/mvc/tutorials/validating-with-a-service-layer--cs on how to wrap my validation data around a wrapper.
I would like to use dependency inject ...
15
votes
1answer
13k views
MVC3 + Ninject - How to?
I've just started playing with IoC containers and therefore chosed Ninject.
After several hours of sweat and tears I still cant figure out how to setup my MVC3 application with Ninject.
So far I ...
11
votes
1answer
3k views
How do I handle classes with static methods with Ninject?
How do I handle classes with static methods with Ninject?
That is, in C# one can not have static methods in an interface, and Ninject works on the basis of using interfaces?
My use case is a class ...
5
votes
3answers
2k views
Inject a dependency into a custom model binder and using InRequestScope using Ninject
I'm using NInject with NInject.Web.Mvc.
To start with, I've created a simple test project in which I want an instance of IPostRepository to be shared between a controller and a custom model binder ...
10
votes
1answer
6k views
Issue using ASP.Net MVC 4 Web API with Ninject.Web.WebApi
I'm trying to use the new ASP.Net MVC 4 Web API project template with Ninject but have hit a wall on the following error:
Method 'GetFilters' in type ...
5
votes
2answers
4k views
Custom Authorization MVC 3 and Ninject IoC
I have a custom authorization class that inherits from FilterAttribute and implements IAuthorizationFilter. I am using the latest version of Ninject w/ asp.net MVC 3 support.
The problem I have is I ...
11
votes
2answers
795 views
I'm confused about interface abstractions when using IoC
I've recently been trying to learn IoC, and have a couple questions based on the following code:
public class WarriorModule : NinjectModule
{
public override void Load()
{
...
5
votes
3answers
1k views
Binding singleton to multiple services in Ninject
I have a problem which seems very similar to the one described in http://markmail.org/message/6rlrzkgyx3pspmnf which is about the singleton actually creating more than a single instance if you're ...
5
votes
1answer
2k views
Contextual bindings with Ninject 2.0
In Ninject 1.0 I had following binding definitions:
Bind<ITarget>().To<Target1>().Only(When.Context.Variable("variable").EqualTo(true));
Bind<ITarget>().To<Target2>();
Given ...
4
votes
3answers
2k views
Ninject Binding Attribute to Filter with Constructor Arguments
I read as many answers as I could for this, but they seem to fall short of one detail.
The trouble is when binding an action filter (with a service injected by controller) to a corresponding ...
29
votes
2answers
7k views
With.Parameters.ConstructorArgument with ninject 2.0
How to use this functionality in ninject 2.0?
MyType obj = kernel.Get<MyType>(With.Parameters.ConstructorArgument("foo","bar"));
The "With" isn't there :(
52
votes
3answers
6k views
Ninject + MVC3 = InvalidOperationException: Sequence contains no elements
I created a new MVC3 project, hit F5, saw the sample page.
Then I used NuGet to get the Ninject.MVC extension. I modified my global.asax according to the Ninject documentation, How To Setup an MVC3 ...
27
votes
5answers
4k views
Error “More than one matching bindings are available” when using Ninject.Web.Mvc 2.0 and ASP.NET MVC 1.0
Recently I've switched to Ninject 2.0 release and started getting the following error:
Error occured: Error activating SomeController
More than one matching bindings are available.
Activation path:
...
7
votes
4answers
2k views
Dependency Injection with Custom Membership Provider
I have an ASP.NET MVC web application that implements a custom membership provider. The custom membership provider takes a UserRepository to its constructor that provides an interface between the ...
3
votes
1answer
238 views
How the binding are done with decorators using Ninject?
Based on this question : Should thoses kind of service go injected in a base class ? (versus static classes).
How the binding would be done with decorators using Ninject ? or any DIContainer ?
...
10
votes
1answer
2k views
How to use Ninject in a Windows Forms application?
I have an WinForms application with this Main Form :
ICountRepository countRepository;
public MainForm(ICountRepository countRepository)
{
this.countRepository = countRepository;
...
4
votes
4answers
2k views
Options for wiring dependencies with NInject
With NInject (preferably 2.0), what options do we have wrt wiring up our object dependencies in a web application?
Can they be defined in an XML configuration file?
Or does it have to be done via ...
5
votes
1answer
347 views
Is it possible to bind different interfaces to the same instance of a class implementing all of them?
I have the following (simplified) situation: I have two interfaces
interface IAmAnInterface
{
void DoSomething();
}
and
interface IAmAnInterfaceToo
{
void DoSomethingElse();
}
and a ...
31
votes
5answers
15k views
Error Handling in asp.net mvc 3
Is there a built in or a proper way to handle errors in asp.net mvc 3?
This is what I want to do:
If the application crashes, or throws an error, it goes to a specific error page.
I can throw my ...
22
votes
2answers
5k views
Ninject + Bind generic repository
I'm trying to Bind a generic IRepository<> interface to my generic Repository<> - however it always return null?
I have tried various things like:
...
38
votes
3answers
6k views
What is the intention of Ninject modules?
I'm a complete newbie to nInject
I've been pulling apart someone else's code and found several instances of nInject modules - classes that derive from Ninject.Modules.Module, and have a load method ...
3
votes
3answers
2k views
Ninject caching an injected DataContext? Lifecycle Management?
I had a series of very bizarre errors being thrown in my repositories. Row not found or changed, 1 of 2 updates failed... Nothing made sense.
It was as if my DataContext instance was being ...
8
votes
2answers
6k views
NHibernate, and odd “Session is Closed!” errors
Note: Now that I've typed this out, I have to apologize for the super long question, however, I think all the code and information presented here is in some way relevant.
Okay, I'm getting odd ...
15
votes
2answers
3k views
Ninject doesn't call Dispose on objects when out of scope
I was surprised to find that at least one of my objects created by Ninject is not disposed of at the end of the request, when it has been defined to be InRequestScope
Here's the object I'm trying to ...
6
votes
2answers
2k views
Lazy Loading with Ninject
I'm evaluating ninject2 but can't seem to figure out how to do lazy loading other than through the kernel.
From what I can see that kind of defeats the purpose of using the [Inject] attributes.
Is it ...
11
votes
3answers
3k views
ASP.NET MVC 4 + Ninject MVC 3 = No parameterless constructor defined for this object
Before we start, I know this is a very common question and I've been using Ninject for many moons without issues, but now it's come up and I can't figure out a fix. Also, no, none of the results on ...
5
votes
1answer
2k views
Ninject with MembershipProvider | RoleProvider
I'm using ninject as my IoC and I wrote a role provider as follows:
public class BasicRoleProvider : RoleProvider
{
private IAuthenticationService authenticationService;
public ...
4
votes
4answers
3k views
Using Ninject to fill Log4Net Dependency
I use Ninject as a DI Container in my application. In order to loosely couple to my logging library, I use an interface like this:
public interface ILogger
{
void Debug(string message);
...
5
votes
1answer
3k views
MVC 3 Dependency Injection with Ninject 2.2 + Global Action Filter
I am trying to use ASP.NET MVC 3 and Ninject 2.2 to inject a logger object into a custom ActionFilterAttribute.
I am able to get this to work if I mark each controller with the custom attribute.
...
2
votes
1answer
1k views
HttpHandler Property Injection using Ninject returning null
I have the following httphandler:
public class NewHandler : IHttpHandler
{
[Inject]
public IFile FileReader
{
get;
set;
}
public NewHandler()
{
}
...
14
votes
3answers
3k views
Ninject and DataContext disposal
I'm using Ninject to retrieve my DataContext from the kernel and I was wondering if Ninject automatically disposes the DataContext, or how he handles the dispose() behaviour. From own experiences I ...
11
votes
2answers
3k views
How to use Ninject Conventions extension without referencing Assembly (or Types within it)
Sorry in advance for the long question, it's long because I've been digging at this all day.
The general problem:
I have an ASP.Net MVC2 application with the following projects: MyApp.Web, ...
6
votes
1answer
3k views
Inject value into injected dependency
I'm having something like this:
class Root
{
public Root(IDependency dep)
{}
}
class Dependency:IDependency
{
public Dependency(int val)
{}
}
And I'm trying to obtain a reference to ...
4
votes
2answers
1k views
Ninject 2.0 - binding to a object that uses the same interface more than once?
Consider the following:
public Something(IInterface concreteObjectOne, IInterface concreteObjectTwo)
{
this.concreteObjectOne = concreteObjectOne;
this.concreteObjectTwo = ...
3
votes
2answers
2k views
Ninject + “Error loading Ninject component ICache”
I've just installed the new Ninject.MVC3 from NuGet and trying to make it work in my asp.net mvc 3 app, however I get this weird error now and then when surfing my site:
[InvalidOperationException: ...
1
vote
2answers
441 views
How to configure Ninject for MVC4 & custom Membership provide?
According to this article description custom-membership-provider-with-repository-injection
I implement the custom Membership provide with inject.
Custom Membership provider
using Ninject;
public ...
17
votes
2answers
6k views
ASP.NET MVC 3 Application using Ninject, Entity Framework 4 Code-First CTP 5, Patterns
ive tried to build some base project with above technologies. I wanted maximum flexibility and testability so i tried to use patterns along the way to make this as a base for future projects. However, ...
12
votes
9answers
5k views
Using Ninject in a plugin like architecture
I'm learning DI, and made my first project recently.
In this project I've implement the repository pattern. I have the interfaces and the concrete implementations. I wonder if is possible to build ...
11
votes
3answers
3k views
ASP.NET MVC2 + Ninject + NLog (+ shared hosting?) = NullReferenceException
I have an MVC2 app that's based on the Tekpub Starter Site, so it uses Ninject for dependency injection, NLog for logging, and a bunch of other libraries in various places. As far as I can tell ...
11
votes
2answers
5k views
Ninject and MVC3: Dependency injection to action filters
I've found loads of inconclusive articles and questions on how to do property injection on an ActionFilter in ASP.NET MVC3 using Ninject.
Could someone give me a clear example please?
Here's my ...
7
votes
3answers
8k views
Correct use of the NHibernate Unit Of Work pattern and Ninject
I have the following implementation and would like some feedback as to whether it makes correct use of NHibernate for sessions and transactions.
public interface IUnitOfWork : IDisposable
{
...
17
votes
2answers
2k views
MVC 3 - how to implement a service layer, do I need repositories?
I am currently building my first MVC 3 application, using EF Code First, SQL CE and Ninject.
I have read a lot about using Repositories, Unit of Work and Service Layers. I think I have got the basics ...
16
votes
3answers
2k views
Prevent Ninject from calling Initialize multiple times when binding to several interfaces
We have a concrete singleton service which implements Ninject.IInitializable and 2 interfaces. Problem is that services Initialize-methdod is called 2 times, when only one is desired. We are using ...

