NInject is a dependency injection framework for .NET applications.
0
votes
0answers
15 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 ...
2
votes
1answer
26 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 ...
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 ...
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
2answers
68 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
39 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 ...
2
votes
3answers
62 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
19 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
33 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
34 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
0answers
24 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 ...
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 ...
0
votes
1answer
40 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.
...
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 ...
1
vote
0answers
52 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 ...
0
votes
0answers
47 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 ...
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 ...
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
55 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 ...
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
1answer
69 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
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
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 ...
0
votes
1answer
50 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
1answer
98 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
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 ...
1
vote
1answer
23 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
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 ...
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 ...
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
50 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.
...
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
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 ??). ...
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 ...
0
votes
2answers
46 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 ...
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 ...
1
vote
1answer
21 views
Ninject factory extension and InCallScope does not give expected results
I am struggling with using the factory extensions for Ninject.
When using the extension in combination with InCallScope, I expected the same instance to be returned from the factory's create method, ...
0
votes
1answer
74 views
Ninject Binding by Convention not working with generics types
I am using .NET 4.5, Ninject 3 with the binding by convention lib as follow:
kernel.Bind(x => x
.FromAssembliesMatching("assembly.dll")
...
0
votes
0answers
32 views
How to get objects passed to parent object's constructor in Ninject?
I have a situation where I need to determine the type of parameter passed to a parent object in Ninject.
Here is an example with a Parent, a Child and a ParentFactory that is responsible for creating ...
1
vote
1answer
60 views
Using Ninject with ORMLite
I want to use Ninject with ServiceStack ORMLite but I'm not sure how to configure it.
I have the following in my Repository:
private readonly IDbConnectionFactory _dbFactory;
public ...
2
votes
1answer
33 views
What is the Ninject syntax for registration and getting FluentValidations IValidator
I am using fody.validar and it's work very well but I would like to use Ninject as the ValidationFactory instead of the home made one. Because I need to inject some services to validate things outside ...
0
votes
0answers
52 views
How to inject dependencies with different scope depending on target?
I have an ASP.NET MVC 4 application which uses Ninject for dependency injection and Ninject.Web.Common in order to bind some classes using the InRequestScope(). This is working well.
Now, however, I ...
1
vote
1answer
67 views
Model (ViewModel) binding when model needs dependencies injected
I'm using Ninject for dependency injecting in an ASP.Net MVC application (This is my first project using Ninject or DI at all for that matter).
I'm opting to using the Model-View-ViewModel pattern. ...
0
votes
0answers
54 views
Cannot pass a repository parameter to a specific controller
I am using simple membership for account registration and I need to store extra data when the user registers. I'm using Ninject for dependency injection and I already have a repository that gets a ...
1
vote
1answer
107 views
Setting up different connection strings for different user in an ASP.NET MVC 3 Web App + Ninject + EF
I'm trying to figure out how to set up a different connection string upon each web request.
This is my scenario:
one single webapp based on asp.net mvc 3 + ninject + entity framework
one single ...
2
votes
1answer
63 views
Nhibernate throwing Session is closed
I'm flapping in the wind, so I thought I'd ask here... Please let me know if this is obvious and has been answered before.
I'm building an MVC3 site which works fine while I'm running it with one ...



