NInject is a dependency injection framework for .NET applications.

learn more… | top users | synonyms

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 ...
51
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 ...
44
votes
5answers
16k views

Ninject vs Unity for DI

We are using ASP.net MVC. Which of these is the best DI framework Ninject or Unity and why?
40
votes
7answers
14k views

Ninject sample application?

I want to get started using Dependency Injection and IOC and I want to get more into using Ninject. Are there any good application with sourcecode available that is written using Ninject that I can ...
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?
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 ...
32
votes
14answers
6k views

Ninject MVC3 - bootstrapper throwing “Already Initialized” exception

I've created an empty Asp.Net MVC3 project, and used nuget install-package Ninject.MVC3 Without doing anything else (no services registered and not even a controller created) I run the application. ...
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 ...
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 ...
30
votes
3answers
4k views

NInject: Where do you keep your reference to the Kernel?

I'm using NInject on a new web application and there are two things that are unclear to me: Don't I need to keep a reference to the Kernel around (Session/App variable) to insure that GC doesn't ...
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 :(
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 ...
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: ...
22
votes
4answers
5k views

NInject with Generic interface

I have defined one interface and one class: public interface IRepository<T> { } public class RoleRepository:IRepository<Domain_RoleInfo> { } Inject here: public RoleService { ...
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: ...
19
votes
2answers
6k views

What does WebActivator do?

This code was generated for me after added entity framework code-first for SQLCE using NuGet. They did no changes to any other file. The file (SQLCEEntityFramework.cs was created and placed in ...
17
votes
3answers
2k views

Ninject InRequestScope missing

Have a couple of questions regarding the latest version (2.2.1.4) of ninject. Was trying to Bind a Linq2sql DataContext to a concrete implementation InRequestScope (in a class library project) ...
17
votes
7answers
1k views

Dependency Injection Frameworks: Why do I care?

I was reading over Injection by Hand and Ninjection (as well as Why use Ninject ). I encountered two pieces of confusion: The inject by hand technique I am already familiar with, but I am not ...
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, ...
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
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(); ...
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 ...
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, ...
15
votes
3answers
9k views

An object with the same key already exists in the ObjectStateManager. The ObjectStateManager cannot track multiple objects with the same key

Using EF5 with a generic Repository Pattern and ninject for dependency injenction and running into an issue when trying to update an entity to the database utilizing stored procs with my edmx. my ...
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 ...
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 ...
14
votes
2answers
6k views

Ninject.MVC3, Nuget, WebActivator oh my

I want to setup Ninject to do a simple test, as well as demonstrate the ease-of-setup using Nuget. I want to resolve a sample service. public interface ITestService { string GetMessage(); } ...
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 ...
14
votes
2answers
2k views

Using Ninject IOC to replace a factory

I've got a factory method inside a parser. Essentially as I load a token I look up the handler for that token, or drop through to the default handler. I've implemented this as a switch and as a ...
14
votes
1answer
4k views

Ninject 2.0 Constructor parameter - how to set when default constructor is also present?

I'm new to IOC containers and learning Ninject. I've using version 2.0, freshly downloaded from Github. I'm trying to set a string parameter on a constructor when a default constructor is also ...
13
votes
2answers
1k views

Asp.net Mvc: Ninject - IPrincipal

I was wondering how I could bind the IPrincipal to HttpContext.Current.User in Asp.net Mvc with Ninject. Friendly greetings, Pickels Edit: Not sure if it matters but I use my own CustomPrincipal ...
13
votes
2answers
7k views

MVC 3 Dependency Resolver or Ninject MVC plugin?

In MVC 3 they added a Dependency Resolver what I been using. While answering someone question someone commented on you should use the Ninject MVC 3 plugin. So my question is why use it over the built ...
13
votes
2answers
746 views

Ninject. Optional Injection

I have global flags which enable/disable features. I'd like to inject some dependencies depending on some flag. Some features require classes which are heavily constructed so I want to inject null if ...
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 ...
12
votes
2answers
2k views

When to use Singleton vs Transient vs Request using Ninject and MongoDB

I'm not quite sure when I should use SingletonScope() vs TransientScope() vs RequestScope() when I do my binding in my global.cs file. I have for example my call to MongoSession (using NoRM and the ...
12
votes
1answer
2k views

Ninject and OnePerRequestModule

I have recently tried out Ninject with the Ninject.Web.Mvc extension, and I've noticed something peculiar and, while not breaking, confusing. In the NinjectHttpApplication abstract class, there is a ...
12
votes
1answer
3k views

Dependency Injection with Ninject, MVC 3 and using the Service Locator Pattern

Something that has been bugging me since I read an answer on another stackoverflow question (the precise one eludes me now) where a user stated something like "If you're calling the Service Locator, ...
12
votes
1answer
2k views

ASP.NET MVC, Ninject, single instance per request for multiple constructors

Im trying to implement an unit of work pattern by passing an unit of work instance into my repositories. Relevant code from Global.asax. public class SiteModule : NinjectModule { public override ...
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
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() { ...
11
votes
3answers
6k views

Ninject - how and when to inject

I'm a newbie when it comes to DI and ninject and I'm struggling a bit about when the actual injection should happen and how to start the binding. I'm using it already in my web application and it ...
11
votes
3answers
2k 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 ...
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 ...
11
votes
2answers
1k views

How can I get Ninject 2 to use parameterless constructor for LINQ to SQL DataContext?

I have started using Ninject 2 (downloaded from Github yesterday including the MVC extension project) with a project based on the following technologies: .Net 3.5 Sp1 ASP.NET MVC 1.0 LINQ to SQL ...
11
votes
5answers
5k views

ASP.NET MVC 3 Site Loading Is Extremely Slow

I really don't know where to begin with this question, but the site I'm working on at times has some really slow page loads. Especially after doing a build, but not always. I usually have to refresh ...
11
votes
1answer
922 views

Avoiding Service Locator Antipattern with legacy app not designed for IOC

I have read often that Service Locators in IOC are an anti-pattern. Last year we introduced IOC (Ninject specifically) to our application at work. The app is legacy, it's very big and it's ...
11
votes
3answers
1k views

Ninject crashes on application start on appharbor

I am using Ninject on my MVC 3 project deployed on appharbor. I noticed that I get an exception when the application is started, and it looks like something inside Ninject is the cause, but I cannot ...
11
votes
2answers
1k views

Real examples of ASP.NET MVC code refactored for Dependency Injection using Ninject

Good morning! Yesterday I watched Tekpub's amazing video "Dependency Injection and Inversion of Control" and it blew my mind. I feel like this is how I should be writing code. I have watched it ...
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 ...
11
votes
2answers
1k views

How do you organise your NInject modules?

NInject's module architecture seems useful but I'm worried that it is going to get in a bit of a mess. How do you organise your modules? Which assembly do you keep them in and how do you decide what ...

1 2 3 4 5 38