NInject is a dependency injection framework for .NET applications.

learn more… | top users | synonyms

46
votes
6answers
4k 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 ...
32
votes
6answers
4k views

Autofac or Ninject? - which should I go for?

I'm hitting paralysis by analysis I think... Which should I go for for my first IOC container: Autofac or Ninject? (Just want an open source, nice and simple, IOC container)
31
votes
6answers
8k 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 ...
25
votes
1answer
3k views

Where should I do dependency injection with Ninject 2?

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 ...
23
votes
13answers
2k 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. ...
23
votes
4answers
2k 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
2answers
4k 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 :(
19
votes
3answers
2k 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 ...
19
votes
3answers
7k 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?
17
votes
3answers
2k 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 ...
14
votes
4answers
2k 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?
14
votes
7answers
988 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 ...
13
votes
3answers
4k 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 ...
13
votes
2answers
875 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(); ...
13
votes
2answers
1k 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 ...
12
votes
2answers
4k 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(); } ...
12
votes
2answers
1k 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 ...
12
votes
1answer
3k 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
2answers
4k 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 ...
11
votes
3answers
1k 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 ...
11
votes
4answers
2k 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 { ...
10
votes
2answers
1k 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, ...
10
votes
1answer
1k 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 ...
10
votes
3answers
875 views

session-per-request implementation for WCF, NHibernate, and Ninject

I am trying to implement a session-per-request model in my WCF application, and I have read countless documents on this topic, but looks like there is not a complete demonstration of this. I actually ...
10
votes
2answers
582 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 ...
10
votes
1answer
3k 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 ...
9
votes
1answer
156 views

Ninject multi-injection is not as greedy as I would have thought! How come?

If I have a class with a ctor set up for multi-injection like this: public Shogun(IEnumerable<IWeapon> allWeapons) { this.allWeapons = allWeapons; } And bindings set up like this: ...
9
votes
1answer
341 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 ...
9
votes
2answers
386 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 ...
9
votes
3answers
355 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() { ...
9
votes
3answers
1k 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 ...
9
votes
2answers
947 views

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

(Tried to post this on the ninject google group but it didn't show up so far, a few hours later..) I have started using Ninject 2 (downloaded from Github yesterday including the MVC extension ...
9
votes
1answer
1k views

Should I use InSingletonScope when binding MembershipProvider in NInject?

I am pretty new to the NInject binding, and here is what NInject describes. TransientBehavior-A new instance of the type will be created each time one is requested. SingletonBehavior-Only a single ...
8
votes
2answers
309 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 ...
8
votes
2answers
183 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 ...
8
votes
3answers
768 views

Using mvc-mini-profiler with EF 4.0 and Ninject

I'm trying to use the new mvc-mini-profiler with my EF4 based app, but I have no idea how to properly get a connection to my destination datasource. Here's as far as I have gotten. ...
8
votes
2answers
865 views

Which Ninject version should I install from NuGet?

just a simple question: I'm going to use Ninject in my ASP.NET MVC 3 application, but in the Package Manager there seem to be a few options: Ninject Ninject.MVC3 Ninject.Web Among others. Which ...
8
votes
3answers
354 views

Configure Ninject to Resolve null when using ToMethod

How can I configure Ninject to resolve null with my constructor injection? I am using ToMethod with a factory method and InTransientScope. My factory is designed to return null if certain things are ...
8
votes
2answers
991 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 ...
8
votes
2answers
2k 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 ...
8
votes
1answer
2k 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, ...
8
votes
2answers
709 views

Ninject 2 missing RegisterAllControllersln?

I'm totally a newbie with Ninject and I tried to follow the tutorial by Shiju Varghese at his blog post about DI. I did add reference of ninject.dll and Ninject.Web.Mvc.dll However, I got stuck as ...
8
votes
3answers
2k views

Ninject kernel creation inside a class library

I have a class that has dependencies that I've wired up with Ninject. public interface IFoo {} public class MyObject { [Inject] IFoo myfoo; } In the real implementation I'm using ...
8
votes
2answers
523 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 ...
8
votes
8answers
3k 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 ...
7
votes
2answers
152 views

Where should I define my NinjectModule and my factories?

I read a few things around on this site : It is best to configure our container at the launch the application It is best to avoid making our libraries dependent on a dependency injection framework ...
7
votes
4answers
418 views

How should you use UnitofWork pattern on my asp.net-mvc site (using nhibernate and ninject)

i have followed the pattern on this site to hook up ninject and nhibernate to my asp.net-mvc3 site. Here is the code in my global.aspx.cs: internal class ServiceModule : NinjectModule { public ...
7
votes
1answer
355 views

Using Ninject in a SOLID application architecture

I'm starting with MVC3 and want to use some flexible architecture, so I've read tens of blogs, a book (Pro ASP.NET MVC 3), read about SOLID principles and finally got to an application structure I ...
7
votes
2answers
2k 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 ...
7
votes
4answers
1k views

Making Entity framework implement an interface

I want to use IoC with Entity framework and Ninject. I figure I need the Generated Entity classes to implement an interface, ICRUD. There's a walkthrough that shows how to force Entity framework to ...

1 2 3 4 5 20