Tagged Questions
1
vote
1answer
32 views
How to (not) specify scope in class libraries with Ninject3
I've an ASP.NET MVC application using Ninject3 (NuGet install). The solution contains:
an MVC project (composition root);
a Domain Model project;
a Data Layer project;
a scheduler project (running ...
0
votes
1answer
49 views
Could not load Ninject assembly in Web.config
I am trying to debug my application but at that time Error is shown as below:
Could not load file or assembly 'Ninject, Version=3.0.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7' or one of ...
1
vote
2answers
50 views
Accessing Methods/Properties from a class in a separate project without adding reference to the project containing the class (Same solution)
I'm not sure if the title correctly describes my problem. If someone could better describe my problem by reading the following description, please help me by editing the title to something more ...
5
votes
2answers
201 views
Ninject - Request scope has already been disposed
I'm using Ninject and the extensions EventBroker and DependencyCreation in an MVC 3 application. I've installed and am using the Ninject.MVC3 package and therefore the OnePerRequestModule.
I'm ...
1
vote
1answer
97 views
Exception from NinjectMvcHttpApplicationPlugin via Ninject.MVC3 Bootstrapper (in MVC4)
I know there are some questions already on this topic but I am still missing something that is causing this error. I installed ninject.mvc3 package which installs ninject and ninject.web.common ...
2
votes
2answers
56 views
Ninject singleton scope loading
I am very much new to ASP.NET MVC and I need help loading some types in singleton scope using Ninject.
--- existing code looks as ----
List<Type> types = loading some types into list here.
...
1
vote
3answers
79 views
How do I get an object into a deeply nested method without passing it through every object?
Lets say I have a method which requires a static property and I want to create unit tests, so I wrap it in a wrapper class. Let's call the interface IFoo & concrete class Foo.
Now if my method ...
0
votes
1answer
15 views
Named binding - MVC3
I'm trying to register to implementations of same interface using named instances
kernel.Bind<IRepository>().To<CachedRepository>().InSingletonScope();
...
0
votes
0answers
52 views
Ninject not session independent, how to make that way?
Using MVC 4 en Ninject. Looks fine single user (single session), but fails if more sessions are involved.
After every successful login I initialize Ninject:
string username = ...
2
votes
1answer
142 views
Do I need to register Ninject.OnePerRequestModule with Ninject.Web.MVC 3.0?
I'm using Ninject for DI and the Ninject.MVC3 extension within an MVC4 app, specifically version 3.0.0.6.
Reading the documentation on Ninject's wiki, it appears that the lifetime of objects created ...
1
vote
1answer
78 views
Difference between standard ninject and ninject.web.mvc in an MVC3 project?
I understand some of the functionality of Ninject and have been able to use it for IoC.
When I go to add a reference to Ninject to a project in VS2010, using NuGet, I see other Ninject extensions in ...
0
votes
0answers
108 views
ninject self host web api mvc4
I am trying to setup dependancy resolution using ninject on a web api project which is self-hosted i.e it runs as a console app instead of inside a app server.Which extentions should i use and where ...
0
votes
1answer
86 views
Ninject: Use Configuration also in library
I'm starting with Ninject and I use it in a MVC 4 scenario and configured my bindings in "NinjectWebCommon".
And everything works fine.
Now I want in an library somehow get the kernel with the ...
0
votes
1answer
532 views
No matching bindings are available, and the type is not self-bindable in Ninject
I am using Ninjec, Ninject.Web.MVC and Ninject.Web.Common
When I start my mvc application I get this binding error:
What do I wrong in my binding?
Error activating DbConnection
No matching ...
2
votes
2answers
185 views
Inject dependency into DelegatingHandler
I am new to dependency injection, but happy with Ninject and Ninject.Extensions.Logging to [Inject] my ILogger wherever i need it.
However some DelegatingHandlers are spoiling all the fun.
public ...
0
votes
1answer
102 views
Is it possible to avoid manual object creation within DI?
As per my understanding, implementation of DI based on
1. ISampleInterface
2. Sample : ISampleInterface
3. Configuration Bind for ISampleInterface with Sample.
4. And Constructor injection
...
0
votes
1answer
46 views
How to properly construct dependent objects manually?
I'm using Ninject.Web.Common and I really like Ninject so far. I'm not used to dependency injection yet so I've got a pretty lame question I can't however google and answer to so far.
Suppose I have a ...
1
vote
1answer
81 views
“Per request” activation context … without request
I have a repository that needs to be created per request. Now there is a singleton caching object that needs to use that repository to fill itself with data, but this object is initialized in the ...
0
votes
1answer
47 views
Ninject DependencyCreation and EventBroker extensions. Ensuring a one-to-one subscription
I'm using Ninject Event Broker extensions and I have two services. ServiceOne is the Publisher of an event. ServiceTwo is the subscriber. ServiceOne doesn't have a hard dependency to ServiceTwo, I'm ...
3
votes
1answer
115 views
Lifetime management with Ninject Dependency Creator and Event Broker
I'm using Ninject in a reasonably large project and want to utilize the Dependency Creation and Event Broker extensions.
The Dependency Creation readme gives the following example (although I believe ...
2
votes
2answers
337 views
How to get DbContext Instance within UnitOfWork via Ninject?
I Use UnitOfWork Pattern with Entity Framework to expose DbContext using bellow code. So My question is that, is it poosible to get Context instance with Ninject ?
IUnitOfWork
public interface ...
1
vote
1answer
213 views
Ninject: Bind same interface to two implementations
I have a project called Infrastructure, which contains an interface IRepository
public interface IRepository<T>
{
/// <summary>
/// Adds the specified entity to the respository of ...
1
vote
1answer
236 views
MONO 3.0.2 + Ninject + MVC4: Sequence contains no matching element
I am using VS2012 RC and created a MVC4 app in .NET 4.0 mode. I use Ninject + Ninject.MVC3 as a DI container. It works on my development machine on Windows and on another machine with .NET 4.0 ...
1
vote
1answer
203 views
Randomly-Occurring Ninject Exception: “Error loading Ninject component ICache”
I recently added both Ninject and Ninject.Web.Mvc to an existing ASP.NET MVC 4 web application. When browsing the site, I receive the following exception, seemingly at random:
...
1
vote
2answers
141 views
Choose injection constructor based on setting in .config file
I have a MCV3 app that uses Ninject as a DI container.
I have one object that has 2 constructors (each with 1 parameter)
public MyObject(IDependencyOne dep){}
public MyObject(IDependencyTwo dep){}
...
0
votes
1answer
208 views
Parameterized Factories Using Ninject
How to make Ninject to instantiate object based on variable on run time?.
I am trying to inject the correct Repository in The Controller action - MVC 3 - based on parameter come from user input. If ...
0
votes
1answer
103 views
Can a Ninject binding be based on a URL/route value?
I have a single controller that I want to use for CRUD operations on two different entities which implement the same interface. I'd like for Ninject to give it a different repository based on a query ...
0
votes
2answers
578 views
No Parameterless constructor defined for this object…With a twist?
I'm building an MVC4 app using EF5 and ninject. Something broke when I upgraded from MVC3 to 4. So I created a brand new solution, got all my nuget packages, added all my references, then copied in ...
2
votes
1answer
331 views
Ninject w/ ASMX web service in a MVC3/Ninject 3 environment
I'm looking for the best way to incorporate a classic asmx web service into my MVC3 environment. I'd like the kernel/container to be shared between the two.
In the past with ASP.NET web forms I was ...
0
votes
1answer
145 views
Constructor Injection for Dependent Classes
I am using Ninject in my MVC application and am trying to implement a Unit of Work repository pattern.
Specifically, I have defined a generic IUnitOfWork interface, I then want to use an instance of ...
0
votes
1answer
252 views
How to read Azure web site app settings inside RegisterServices method
I am trying to configure some key/value pairs for my Azure web application using app settings section on Windows Azure preview portal.
According to the documentation, Azure should inject configured ...
0
votes
1answer
468 views
Inheriting a base controller with constructor
I am using ninject to inject my repositories. I would like to have a my base class to be inherited but I cant because it has a constructor.
Base Controller:
namespace Orcha.Web.Controllers
{
...
1
vote
3answers
132 views
Supply user specific dependencies to MVC controller with Ninject
I have some controllers that require a web service connection (an instance of MS Dynamics CRM CrmService) and I would like the controllers to receive this through their constructors. The CRM service ...
0
votes
1answer
325 views
Getting “The resource cannot be found.” error when using Ninject
I'm working on an ASP.NET MVC 3.0 application, using Ninject as my dependency injection framework.
So I've inherited my controller from NinjectHttpApplication like so:
public class MvcApplication : ...
0
votes
1answer
130 views
Ninject MVC3 - how does the type gets resolved
Scenario:
I've set up the Ninject MVC3 using the link below:
https://github.com/ninject/ninject.web.mvc/wiki/Setting-up-an-MVC3-application
I followed Nuget version. And, code looks like below:
...
1
vote
1answer
169 views
upgrade Ninject v2 to v3 with .NET 4 System.ServiceProcess.ServiceBase
I am attempting to use Ninject v3 to test a web service hosted within a .NET4 windows service ( System.ServiceProcess.ServiceBase ).
I create MyServerModule : NinjectModule , and within Load() I ...
1
vote
1answer
374 views
HttpContext is null when calling Ninject outside of an MVC3 controller
this question Ninject Dependency Injection in MVC3 - Outside of a Controller is close to what I'm experiencing, but not quite.
I have an ASP.NET MVC3 site using Ninject 3 and it works wonderfully ...
2
votes
1answer
587 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
109 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 ...
1
vote
2answers
571 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 ...
0
votes
1answer
433 views
Validation Attribute get triggered two times
In my MVC3 application I have the model ( not important properties deleted ):
public class AccountViewModel
{
[StringLength(65)]
public string Property1 { get; set; }
[StringLength(65)]
...
0
votes
2answers
160 views
How to use Ninject in an ASP.NET MVC Application for non-MVC objects
I have an ASP.NET MVC 3 project using Ninject (NuGet install). I'm trying to understand how I can use it to inject dependencies into non-MVC objects.
I have some code that looks similar to below. How ...
0
votes
2answers
506 views
bind to property always return null
I am trying to bind a repository to property using Ninject but always get null reference of binding object. I will explain the problem using code below.
public interface IServiceRepository
{
...
0
votes
0answers
310 views
Ninject Several constructors have the same priority
I can't get rid of the exception which comes from Ninject "Several constructors have the same priority"
I have repository
public interface IRepository<TEntity> where TEntity : class
{
...
2
votes
2answers
299 views
How to instruct Ninject hide a Type from its implicit binding list
Does Ninject have an attribute which I could use to decorate class or constructor to let Ninject to ignore it?
I need to get rid of:
A cyclical dependency was detected between the constructors of ...
0
votes
2answers
708 views
Mono, ASP.NET MVC 3, Ninject and a default constructor required
I have a working Visual Studio project that I want to run o Mac with Mono and MonoDevelop.
The project is an ASP.NET MVC 3 application with Ninject MVC that basically inject on controller some ...
5
votes
3answers
5k views
Ninject Dependency Injection with Asp.Net MVC3 or MVC4
I am using Ninject MVC3(version 3.0.0.0) for my ASP.Net MVC3 application installed using NuGet Package for Dependency Injection.
Here is the Global.asax change:
public class MvcApplication : ...
1
vote
1answer
691 views
When using Ninject in my MVC3 I get a Ninject.ActivationException: Error activating IRepository{Ranking} installed via Nuget
I installed Ninject via nuget, and I registered my binds in NinjectMVC3's RegisterServices method (created by nuget). Follow my code:
private static void RegisterServices(IKernel kernel)
{
...
3
votes
3answers
2k views
Ninject.Web.Common throwing ActivationException trying to inject dependencies into HttpApplicationInitializationHttpModule
I'm not sure where to even begin solving this, but I'm getting an exception when trying to run my ASP.NET MVC app.
Here is the error I'm getting:
[ActivationException: Error activating IntPtr
...
0
votes
1answer
114 views
conditional disposing of objects using DI framework (Ninject)
I have the following code
public class MyService : IMyService
{
private readonoly IUnitOfWork _unitOfWork;
public MyService(IUnitOfWork unitOfWork)
{
_unitOfWork = unitOfWork;
...




