Ninject is a lightweight dependency injection framework for .NET applications. It helps you split your application into a collection of loosely-coupled, highly-cohesive pieces, and then glue them back together in a flexible manner. By using Ninject to support your software’s architecture, your code ...
0
votes
0answers
13 views
NInject: how to pass parameters when Get<T>()?
I'm using the attached image to explain what I meant.
I have a few classes managed by NInject. Some of them have a few singleton instances, and others are in transient scope. In the image, blue ...
0
votes
0answers
8 views
Ninject and WCF ServiceAuthorizationManager
Does anyone know how I can inject a repository into a ServiceAuthorizationManager subtype in a WCF service?
I am creating a class that extends ServiceAuthorizationManager and calls a method in my ...
0
votes
1answer
9 views
Ninject.MVC3 invalid path to NinjectWebCommon.cs
I'm using the Ninject.MVC3 in my application and it has been working great until I desided to rename my solution/projects. Everything has been renamed correctly and all tests passes and so on. The one ...
0
votes
1answer
21 views
nLog not finding or loading configuration file
I'm writing an application and using Ninject to create an instance of a Logging factory which can be used to create Nlog Loggers. I have my own Logger class which wraps the Nlog Logger class
I've ...
1
vote
1answer
33 views
Adding Ninject.MVC3 to existing MVC(4) project
I am working on a project with MVC4, and have decided that I wish to add some dependency injection via Ninject. After download/install via NuGet, I find this error in the NinjectWebCommon.cs (Line ...
1
vote
0answers
27 views
NInject: how to pass parameters to a transient object created by NInject?
I'm developing an ASP.NET MVC 3 project using NInject to create object instances. It builds an object graph for each Action. It works well in most cases. However, I have a new requirement that I must ...
1
vote
2answers
47 views
Designing a good interface for using RabbitMQ from ASP.NET MVC and worker apps
Looking into building a web app that runs on MVC4 at AppHarbor. In the interest of responsiveness and performance, slightly longer running tasks (typically, generating/sending emails, resizing images, ...
0
votes
1answer
30 views
How do I tell ninject 3 to use singleton scope by default for all types?
I want my application to always use services as singletons, how do I set up Ninject to use singleton scope by default. I am using conventions to register my types, do I need to use the Bind<> ...
0
votes
2answers
48 views
Is Ninject's Dispose method really necessary?
We are currently evaluating if we could use Ninject for future projects. One condition is, that the libary should NOT force us to call the Dispose method. So, is it really necessary? Will not calling ...
1
vote
1answer
50 views
Integration test with Ninject
I am familiar with the fact, that i should not use dependency injection in unit tests, so i can unit test each layer independently.
Still, I want to create integration tests for my controllers. ...
0
votes
1answer
16 views
Ninject does not resolve dependency correctly in silverlight project
I have a silverlight 4 project with mvvmlight and ninject 3.x.
I've setup the container like this
kernel = new StandardKernel(new ViewModelModule(), new ClientSessionModule());
And the modules ...
0
votes
1answer
49 views
C# Ninject WithConstructorArgument Causing ActivationException
Following on from another question I had here I've got a MainConfig object and I want to inject certain properties of that object instead of the actual MainConfig object itself. Excerpt from my module ...
0
votes
1answer
36 views
MVC3 & Ninject / Unity: Injecting a hierarchical service container
I've been using Ninject for a while, but only for simple DI. I have a slightly more complex scenario that I'd like to cater for.
I'm using the Ninject.Web.MVC plugin with controller injection, which ...
0
votes
1answer
19 views
Use Ninject to manually satisfy dependencies on existing object
I am successfully using Ninject in a project where I can have a class like this:
public class MyServiceConsumer
{
[Inject]
public void IPropertyInjectedService { get; set; }
private ...
1
vote
1answer
51 views
Ninject property or construction inject ASP.NET MVC3
I'm using Ninject.MVC3.
private static void RegisterServices(IKernel kernel)
{
kernel.Bind<Repository>().To<Repository>();
}
Registering them like so in the App_Start.
It ...
1
vote
2answers
36 views
How to avoid VS assembly circular references in order to access DI container(Ninject)?
Imagine I have solution containing 2 class library projects : project1 exposes some interfaces, project2 exposes some interfaces and(!) consumes interfaces from project1. I have also project3 which ...
0
votes
1answer
23 views
Can I do piece-wise configuration of scoping for my objects in Ninject?
We have several cases where we are providing services in code libraries where we know scoping and lifetime rules for the service providers in the code library. We would like to configure that ...
0
votes
1answer
46 views
Ninject Binding Issue with Constructor Chaining
I have a MVC3 project that uses the Entity Framework and Ninject v2.2, and follows the Unit of Work pattern with a Service Layer wrapping my repositories.
After looking at the code below, hopefully ...
0
votes
0answers
35 views
Ninject DI with Class Library Project
I'm working on a larger scale MVC App and have been trying to use DI with Ninject. I have the following projects:
Core - Class Library (contains a custom membership provider)
Domain - Class Library ...
2
votes
4answers
129 views
How do I properly use Dependency Injection?
Simple case:
I have an interface for logging messages, like this:
public interface ILogger
{
void Log(string message);
}
And maybe three different classes implement this interface.
Now, I ...
2
votes
0answers
100 views
Ninject: Passing client's assembly as constructor argument and specifying desired implementation from the client using attributes
I'm new to Ninject and Dependency Injection in general so please excuse my noobness here. =)
I have several implementations of an IConfig interface which scan an Assembly and its dependencies for ...
0
votes
1answer
21 views
Injecting into controllers within an Area with Ninject
Is there a way to make a binding that would say "when injecting IService into any controller within an area Admin inject this instance"?
We have numerous controllers in Admin which might use the ...
0
votes
1answer
19 views
Cyclic dependency error when decorating using Ninject 3.0 conventional bindings
Please see the sample code below. Its an over simplified scenario to demonstrate a problem I am encountering when binding using the WhenInjectedInto method. This has always worked with the earlier ...
3
votes
2answers
84 views
Ninject Scope issue with Tasks/Threads
I have an MVC3 project that uses Ninject, Entity Framework and the Unit of Work pattern with a Service layer.
My AsyncService class has a function that starts a background task that, as an example, ...
3
votes
0answers
53 views
ninject (or other IoC) with Task scope?
I'm not sure the TPL surfaces enough for this to be viable, and as such, feel free to just point out alternative patterns that work instead. :)
I'm trying to figure out if I can use Ninject for ...
1
vote
1answer
75 views
ASP.NET MVC 4 and Ninject InRequestScope with RavenDb IDocumentSession in embedded HttpServer mode
I'm having some problems with Ninject's InRequestScope extension. It's looks like I'm getting new instances of the IDocumentSession within the same request. I'm running RavenDb as an embedded ...
1
vote
1answer
58 views
Ninject: Bind Constructor Argument to Property of Other Object
I have an IConfig object that contains settings used throughout my application. At the moment, I inject the entire object into the constructor of each object that needs it, as follows:
public ...
1
vote
1answer
36 views
Ninject assembly does not match referenced assembly
Setup:
ASP.NET MVC3
Ninject v2.2.1.4
Ninject v3.0.0.15
Ninject.MVC3 v3.0.0.6
Ninject.Web.Common v3.0.0.7
Using NuGet, my UnitTest project references Ninject v2.2.1.4
My Web Project references ...
1
vote
1answer
52 views
HttpContext Scope when creating Async Task
If I start an asynchronous task inside an MVC3 Controller action, and then return immediately, is the HttpContext scope until the next Garbage Collection call, or does it wait until the asynchronous ...
1
vote
0answers
31 views
Ninject, how to bind Interface with generics
I have a simple interface that looks like this:
public interface ICommandHandler<T>
{
void Handle(T command);
}
Then I have several implementations of that interface, here is one example:
...
1
vote
1answer
29 views
Passing session information to the repository layer
I've inherited an ASP.NET MVC3 + NInject application and I'm tasked with implementing virtual private databases at the SQL Server level. In order for this to work the credentials used to connect to ...
0
votes
1answer
42 views
NInject InRequestScope does not return the same instance for MVC4
I have installed ninject throught nuget so I have the following:
public static void Start()
{
DynamicModuleUtility.RegisterModule(typeof(OnePerRequestHttpModule));
...
2
votes
2answers
85 views
Ninject ToFactory works in Resharper unit tests, but not NCrunch
I'm using Ninject.Extensions.Factory with Ninject 3 to create a factory, which creates different types of IFoo based on the string provided to the factory. I've got a passing unit test, but oddly, ...
0
votes
2answers
68 views
Ninject 3.0 is not disposing objects mapped as InRequestScope
I'm trying to use Ninject to manage lifetime on objects. For my IRepository object, I am requiring IDisposable to be implemented, and within the ConcreteRepository, I have implemented IDisposable to ...
1
vote
2answers
101 views
Ninject 3 InRequestScope not returning the same instance for the same request
Recently, I upgraded one of my MVC3 projects from Ninject 2 to Ninject 3.
After a couple of minutes trying to find why InRequestScope was not anymore available, I found that this is now an extension ...
1
vote
2answers
121 views
How to inject dependencies in an HttpModule with a NinjectHttpApplication (no nuget)?
I have a .Net MVC 3.0 application and I'm using Ninject 3.0. I didn't install any nuget. I'm referencing Ninject.dll, Ninject.Web.Common.dll and Ninject.Web.Mvc.dll (and 2 others). I want to have ...
1
vote
2answers
68 views
Moq, TDD and multiple layers
I have a data assembly which defines my repositories.
I then have a service assembly which defines my services, each service has a repository injected into the constructor by Ninject.
When I'm unit ...
2
votes
2answers
79 views
IOC with MVC multiple registration for the same interface
How does one register multiple data providers for certain interface with IOC (I use Ninject but you can answer in general), for instance ISettingsRepository is implemented by JsonSettingsProvider and ...
0
votes
1answer
39 views
Inject same instance
I've implemented repository & unit of work patterns for nhibernate. I use ninject as DI. I have more than one databases so I have different implementations of unit of work with different repos. I ...
3
votes
0answers
96 views
AutoMapper with Ninject
I've been trying to setup AutoMapper to instantiate all objects via Ninject.
I've got the following code in my global.asax file
Mapper.Configuration.ConstructServicesUsing(x => kernel.Get(x));
...
1
vote
1answer
56 views
MVC3 Controller not recongnising base controller with Ninject dependency
I've hooked up Ninject (correctly) to bind NLog. Here is my RegisterService method in my NinjectMVC3.cs
kernel.Bind<ILogger>().To<NLogger>();
I'm trying to port over to PetaPoco and ...
0
votes
1answer
53 views
Less specific using statements conflicting with more specific ones
Can anyone explain this behavior and what the solution is?
I installed Ninject.MVC3 via nuget, this creates a file in the App_Start folder called NinjectWebCommon.cs with the namespace like this:
...
0
votes
0answers
24 views
WCF Service isn't being created from Ninject
I'll start by saying "It works on my machine".
I'm working on deploying a Silverlight 5 OOB application with Elevated permissions. When I run it 100% on my machine, everything works as expected. ...
1
vote
1answer
33 views
Using a single instance of ILog in an MVC application
I'm using Ninject for DI in my ASP.NET MVC application. I'm resolving the ILog dependency in controllers using the below module
public override void Load()
{
var configPath = ...
0
votes
0answers
37 views
Quick way of looking up constructor dependencies for DI
I'm using Ninject to glue together a complex project and I want to refactor some of the dependencies so I can make better use of the factory pattern (as implemented in ninject.extensions.factory). I'm ...
0
votes
1answer
39 views
WCF using Ninject Dispose not triggering in requestscope
Here is my module
internal class WebServiceConfiguration : NinjectModule
{
public override void Load()
{
Bind<IWebService>().To<WebService>().InRequestScope();
}
}
...
2
votes
1answer
52 views
Using default parameter values with Ninject 3.0
I have a class with a constructor having a parameter with a default value. With Ninject 2.2, it would honor the [Optional] attribute and work fine with no binding defined against a constructor ...
0
votes
1answer
57 views
different repositories of different project in same query
I am using ASP.NET MVC3 with Entity Framework using generic repository pattern with DI (Ninject).
I have a main project (class library) that other sites connect to it. the main project has it's own ...
2
votes
1answer
29 views
Are weakeventmessagebroker and messagebroker Ninject extensions deprecated?
I'm trying to find the most up-to-date Ninject extension for development of event brokers / message brokers.
I could locate at least 3: messagebroker, weakeventmessagebroker and bbveventbroker.
...
2
votes
2answers
178 views
Injecting IPrincipal in ASP.NET MVC 3 - What am I doing wrong?
I've got a custom IIdentity implementation:
public class FeedbkIdentity : IIdentity
{
public int UserId { get; set; }
public string FirstName { get; set; }
public string LastName { get; ...