NInject is a dependency injection framework for .NET applications.
1
vote
1answer
181 views
“No parameterless constructor defined for this object” Exception in Using Ninject MVC 4
I'm naive in Ninject.
I've installed the following package with Nuget :
<package id="Ninject" version="3.0.1.10" targetFramework="net45" />
<package id="Ninject.Web.Common" version="3.0.0.7" ...
0
votes
0answers
17 views
WCF / Ninject / Default (parameter-less) constructor
I'm trying to add Ninject to a WCF service using the WCF Ninject extension.
I'm getting the error:
The service type provided could not be loaded as a service because it does not have a default ...
4
votes
2answers
300 views
Multi-step database transaction split across multiple HTTP requests
I have used TransactionScope in the past with desktop client applications to roll back an incomplete multi-step transaction. That approach would seem unlikely to work in an Web application.
Can ...
1
vote
1answer
18 views
Can you automatically retrieve a foreign document in your mongodb model using c#?
I would like to setup my mongo db poco models so that they automatically retreive their foreign documents, similarly to how its handled by EF and nhibernate.
This is the solution that I have come up ...
2
votes
1answer
27 views
What causes the Ninject.Activation.IRequest Target property to be null
Probably a simple question, but I did not find anything in the documentation or on SO that directly answers it.
I had to work with the Ninject When(Func<IRequest, bool> condition) extension ...
0
votes
0answers
16 views
Binding Ninject and Cron Task Manager. Without using the controller
I want to have it periodically executes the code and the data loaded into the database. On the Internet I found the following class http://crontaskmanager.codeplex.com/documentation. Please tell me ...
0
votes
3answers
728 views
NServiceBus subscription not working
Im trying to setup an NServiceBus PubSub example which is hosted inside a set of windows services.
I have configured my publisher and can see it calling my buses publish method. Ive also configured ...
13
votes
4answers
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 ...
2
votes
3answers
63 views
Lazy<> Ninject Injection
I use ninject framework. In my code I have a Lazy object. I can create an instance, but when I call the value property I got an exception.
private Lazy<IPsoriasisReportUserControl> ...
0
votes
1answer
33 views
Configure Ninject With Stand Alone Web Api Project
Hi I am working on a project that needs a separationg beetween an mvc project and a web api project and I created both of them.
Only my web api project requires a dependency injection framework so I ...
0
votes
1answer
20 views
Ninject: What is MvcModule: GlobalKernelRegistrationModule<OnePerRequestHttpModule>?
I'm seeing Ninject source code, I cannot understand the MvcModule (source code in github).
Why the OnePerRequestHttpModule stand as a generic template type? What does it mean for?
2
votes
1answer
40 views
How can Ninject be configured to always deactivate pooled references?
We're using a library that uses pooled objects (ServiceStack.Redis's PooledRedisClientManager). Objects are created and reused for multiple web requests. However, Dispose should be called after each ...
0
votes
1answer
13 views
implement a N2.Engine.IServiceContainer for Ninject
I am investigating integrating N2CMS into an existing website.
The problem that I am getting is that the IOC engine that N2CMS uses (tinyIoC) doesnt know about any of the dependencies of my ...
0
votes
1answer
74 views
MVC 3 Exception: Make sure that the controller has a parameterless public constructor
I have MVC 3 app with this same problem. I use Ninject for dependency injection. I cannot trace which controller has a problem, it broke yesterday and I have spent an entire day trying to locate. ...
2
votes
0answers
25 views
IIS 7.5 Auto Start Not working with Ninject using Web Activator
I have the auto start feature configured for my server as outlined here:
http://msdn.microsoft.com/en-us/library/ee677260(v=azure.10).aspx
I am not using a custom method as I don't need to do any ...
2
votes
1answer
35 views
Ninject: WithConstructorArgument and WithPropertyValue didn't work
I have a simple problem, that I just want to inject a HttpSessionStateBase object into my class, so it can be testable.
Since the HttpSessionStateBase is related to HttpContextBase, and It should be ...
1
vote
1answer
386 views
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 ...
0
votes
0answers
48 views
Integrating Ninject in an asmx Web Service
What is the best way of integrating Ninject in a Soap Web Service?
I tried with NuGet and Ninject.Wcf package. But I get an error when I try to consume an asmx service without a parameterless ...
0
votes
1answer
70 views
Moq Unit Test Setup Not Working
I am trying to create a simple unit test using the Ninject Moq framework, and for some reason I cannot get the Setup method to work correctly. From what I understand the Setup method below should ...
0
votes
1answer
47 views
Ninject Factory - “new” object being passed in instead of one called in factory method
I am using the Ninject Factory Extensions so that I can create objects that have services injected plus custom values
so:
public interface IGameOperationsFactory
{
ISpinEvaluator ...
1
vote
1answer
35 views
How is HttpContextBase being registered with ninject? I didn't explicitly bind it
I created a binding for HttpContextBase in my NinjectWebCommon.RegisterServices method, but when I try to reference it in my controllers or services I get an error message.
Here's the binding:
...
0
votes
2answers
99 views
C# ASP.NET MVC Code First Not Saving Changes
I have a really simple model:
public class Item : DbEntity
{
public string Name {get;set;}
public int Quantity {get;set;}
public virtual Category Category {get;set;}
}
public class ...
3
votes
2answers
478 views
Using Ninject to Bind WebApi Filter Attributes
I'm currently using ninject.mvc3 in my asp.net webapi project, and it works fine. I am now trying to bind filter attributes, but BindFilter and BindHttpFilter are missing from IKernel interface when ...
0
votes
0answers
26 views
Ninject.Extensions.Conventions, Windows Phone and FromAssemblyContaining
I'm trying to use Ninject with Ninject.Extensions.Conventions to bind types by convention but on Windows Phone 8 I’m failing to use FromAssemblyContaining. FromThisAssembly is working fine – is this ...
1
vote
1answer
102 views
Onion Architecture: Business Services Interfaces and Implementation
I am learning about the Onion Architecture. I have a confusion about the service layer, because I see some people saying that the core layer should only contain:
Models
Repository interfaces
...
1
vote
0answers
28 views
I can't get the callscope of my session to work
I'm having trouble scoping my IDocumentSession dependency with Ninject.
Every time my bus executes a command, I want a new IDocumentSession. Commandhandlers that are created by the factory should ...
0
votes
1answer
41 views
Ninject MVC and static Helper
Hello i am having some problems parsing along my database context to my static helper classes.
For an example my UserHelper class, where i would like to do some lookup to see if the user is an admin.
...
2
votes
1answer
50 views
Ninject convention based bindings + decorators
We're using Ninjects convention based bindings to automatically bind a set of commands and queries to their handlers. So far we have one decorator working using the following.
Bind all without the ...
1
vote
0answers
54 views
Ninject 3, WCF Service and parameterized constructor
I have a WCF Service hosted in IIS and a C# Domain under it. Both are in separate projects. I've been trying to invert the dependency:
Service -> Domain
to
Service <- Domain
Which is quite a ...
0
votes
1answer
33 views
Ninject not injecting in an existing winforms app
I have a feeling this is just a misunderstanding on my part of DI in winforms.
I'm trying to implement Ninject into an existing winforms app. In Program.cs I am doing something similar to
IKernel ...
2
votes
2answers
45 views
Ninject: Registering an already created instance with Ninject?
Can anyone tell me if i can register an already created instance of a class with Ninject so that it will use this instance everytime it needs injecting?
I suppose you can call it a singleton but I ...
1
vote
1answer
42 views
Binding custom IPrincipal and IIdentity with Ninject
I am trying to bind the IIdentity from HttpContext.Current.User.Identity to a custom IPrincipal but from what I can gather, IIdentity is null before user is authenticated.
Sample code:
public ...
0
votes
2answers
47 views
Bind Controller Context with Ninject
I have a service class that is required to create a pdf, which needs the ControllerContext injected, in order to render a the html => pdf.
This service is called through a middle tier, that has no ...
0
votes
1answer
49 views
Batch registering all implementations of a generic interface with Ninject
i have the following interfaces injected in Castle Windsor. how do i do the same in Ninject?
container.Register(
AllTypes.FromAssemblyNamed("Apps.Web")
...
0
votes
1answer
57 views
Dependecy Injection works with Unity but doesn't with Ninject
I've been working on EF Repository pattern with Unit of Work and DI. I was following this example: link In example is used Unity as DI container, but I want to use Ninject.
(Note: with Unity ...
0
votes
1answer
51 views
Ninject and static classes - how to?
I have a static class and I need to inject some instances into it. A static class can have a static constructor but it must be parameterless. So, how am I supposed to injet something into it?
I do ...
0
votes
1answer
51 views
Ninject to Action Filter for MVC4
First of all, I'm new to Ninject.
I'm trying to bind to Action Filter in MVC4.
I found many questions in SO but all of them are about MVC3-2 and most of them are a couple of year old - MVC3, Filter ...
1
vote
2answers
35 views
Ninject — how to to IOC with a class used in a Parallel.ForEach loop
I have some code that looks like below. I'm new to IoC and Ninject and don't know how to inject IOtherClass into SomeService so that the Parallel.ForEach works. My only other guess is to move the ...
0
votes
1answer
40 views
How create Ninject factory
I have an abstract factory. Today, I wanted to bind it with ninject. I do not know which is the best way, but I did it in this way. Then I tough I tried the by the provider way. so
I implemented the ...
0
votes
0answers
51 views
Pass an object as parameter to the ServiceHost
I'm trying to start up a project which takes care of stuff. I call this class the CentralLogic class. When this is started, I'd like to start a host. The host has some settings in the App.Config file ...
1
vote
2answers
36 views
Which scope must be used if we want the instance collected by the GC to be disposed properly?
Must InParentScope be used if one wants an instance collected by GC to be Disposed properly ? If not which Scope should be used instead?
1
vote
1answer
25 views
Ninject 3.0.1.10 + factory extension there is not tofactory method
I use Nineject for .NET ioc container. I would like to use the factory method, but I can not.
There is not .ToFactory method.
I added to project the Ninject.Extensions.Factory extension for Ninejct ...
0
votes
1answer
31 views
Global Application Settings in ASP MVC + nInject
I've trawled the globe for an answer to this, but cannot find anything.
I am in the process of rewriting an ASP WebForms application to ASP MVC. I've been using nInject and for most of the objects ...
0
votes
1answer
33 views
How do I get Nancy to dispose of my InRequestScope()'d objects when using Nancy.Bootstrappers.Ninject?
I have simple application with Nancy and Nancy.Bootstrappers.Ninject. We have to use Ninject, because the web app is part of a larger set of applications that already use Ninject.
I tried different ...
0
votes
1answer
70 views
Dependency Injection into global.asax
Injecting dependencies in Global.asax does not seem to always work. Sometimes it does, sometimes I get a ContextDisposedException (it seems that the problem occurs when I'm doing a Page.Redirect ??). ...
0
votes
1answer
53 views
Convert Ninject to Unity
I'm currently migrating some working Ninject code over to Microsoft Unity and am a bit stuck on this particular conversion.
...
2
votes
2answers
438 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 ...
4
votes
3answers
956 views
Ninject InRequestScope fallback to InThreadScope
In my MVC3 project I've setup my kernel to Ninject the Entityframework context on a InRequestScope basis, this works perfect, but I have a background runner that does some workflow management.
It ...
1
vote
2answers
54 views
Simple Dependency Injection for testing
I'm new at Ninject and I have a very simple requirement, but I couldn't find exaclty what I want in the Ninject's documentation.
I have a class like this:
public class User
{
public string Name ...
2
votes
2answers
65 views
Ninject caching object, that should be disposed, memoryleak?
Memory leak when the, no objects gets disposed in the weakreferencecollection inside ninject, what am I doing wrong or is there a huge error in ninject?
When Kernal gets disposed then all the ...


