NInject is a dependency injection framework for .NET applications.

learn more… | top users | synonyms

1
vote
1answer
67 views

Passing Constructor Arguments to a dependency of a root object as part of a single resolve in Ninject

I have the following classes (I know they are not well designed; I just want to express the Ninject problem). I don't know how to pass the constructor arguments down to my service (which is a ...
0
votes
2answers
50 views

How to use strategy pattern with Ninject

I have two repositories AlbumRepository with interface IAlbumRepository and CachedAlbumRepository with interface IAlbumRepository which has constructor interface IAlbumRepository. I need inject with ...
4
votes
1answer
159 views

AutoMapper Profiles and Unit Testing

I'm rolling over my AutoMappers from using one large AutoMapperConfiguration class to using actual profiles. Global now looks like so (forgive the Open/Close violation for now) Mapper.Initialize(x ...
0
votes
1answer
67 views

make Ninject resolve ToMethod bindings

I've made a MainFactory which will resolve all dependencies for my classes, but I would like to use Ninject in order to make it automatically resolve constructor parameters. so, I'm trying to bind ...
1
vote
1answer
90 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" ...
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. ...
0
votes
1answer
41 views

WCF service with ninject extension

i got problem with my wcf service with ninject extension. When my service doesnt have parameterless constructor when im trying to call it i got error that im missing it, when i got parameterless ...
1
vote
1answer
67 views

DI, Entity Framework, and Deferred Execution

I have set up DI injection on my project, which injects an implementation of an IUnitOfWork, which has my repository and a Commit() method. I inject this into my business layer and all is great. ...
0
votes
1answer
80 views

Binding in Ninject - generic arguments provided doesn't equal the arity of the generic type definition?

Trying to use ninject to bind my interface to a concerte class but I must be missing something and can't get it work. System.ArgumentException was unhandled by user code HResult=-2147024809 ...
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(); ...
1
vote
2answers
76 views

How to resolve constructor injection with multiple layers

In my project I had a controller dependency on IRepositoryProvider among others. public class HomeController : BaseController { public HomeController(ISessionWrapper sessionWrapper, ...
0
votes
1answer
51 views

Can Ninject use an anonymous delegate (func) as a ConstructorArgument?

I have a repository abstract class that encapsulates pretty much all of the CRUD functionality: public abstract class DataRepository<T> : IRepository<T> where T : class { public ...
0
votes
1answer
39 views

How to assign ClientCredentials to WCF Client while binding with Ninject Kernel in Test_at_server configuration?

I am using Ninject to inject my WCF client in the local environment and its working fine. This is how I have implemented it: private static IKernel CreateKernel() { var kernel = new ...
0
votes
1answer
42 views

Managing DI for Couchbase client

With RavenDb it was really a piece of cake: public class DataAccessModule : NinjectModule { public override void Load() { Bind<IDocumentStore>().ToMethod( context => ...
2
votes
2answers
112 views

Ninject 3.0.0 and NServiceBus 3.3.0 Injection Issue

I have a small testsystem developed to get to know NServiceBus. The classes in the testproject are taken from a production system which uses Castle.Windsor for dependency injection. In addition to ...
3
votes
2answers
76 views

Ninject Contextual Binding w/ Open Generics

I have a generic interface IRepository<T> and two implementations xrmRepository<T> and efRepository<T> I want to change the binding based on T, more specifically use xrmRepository ...
1
vote
0answers
80 views

Using Ninject and binding a default implementation while avoiding the dreaded Service Locator anti-pattern

Is it possible and/or a good idea to use Ninject (or any other IoC container, for that matter) to create a default binding for situations in which an appropriate implementation does not exist, and ...
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 = ...
3
votes
1answer
96 views

How does Ninject 3 affect object lifetime?

Before I had refactored my project for DI with Ninject, I had a simple test class with a simple method: public void TestImport() { var functionality = new ImportFunctionality(); ...
3
votes
1answer
68 views

How do I bind IFactory to a concrete implementation?

I need a factory class to do a bit of work before it can return an instance, so I have a factory method like this: public Foo Create(string bar, IEnumerable<SomeMetaData> metaData) { var ...
0
votes
1answer
82 views

Getting 'Context is not constructible. Add a default constructor or provide an implementation of IDbContextFactory."

I am getting this error when I try to use code first migrations. My context has a constructor with the connection name. public class VeraContext : DbContext, IDbContext { public ...
0
votes
1answer
27 views

missing NinjectDependancyResolver.cs

i'm working on a project that uses mvc in dotnet. i have to develop the remaining code given to me.I made a copy of the Maincode and tried to run it ;i'm getting this error when i tried to run with ...
0
votes
0answers
77 views

Ninject Property Injection not working on ActionFilters

I have an interface and a class that implements that interface public interface ISessionVariables { bool IsSessionTokenValidated { get; set; } } public class HttpContextSessionVariablesAdapter : ...
1
vote
0answers
42 views

Can I use async method for Ninject bindings using ToMethod?

I'm currently facing a problem with the asynchronous initialization of an object (this question). I'm using Ninject 3.0.1.10, and I want to achieve the following: ...
3
votes
1answer
58 views

How to tell Ninject to inject the same instance for nested constructors?

I have a Windows Service application, where I would like to use Ninject for my service classes. There are some service classes which use other, let's say "lower level", or more generic service ...
0
votes
1answer
48 views

How does dependency injection know which type of mapping to use when injecting an interface

I've been reading up on dependencey injection and I read a lot on how an interface is inejected through a constructor. How does it know what type of mapping to use for the interface? For example, if ...
2
votes
1answer
166 views

Implementing the generic repository and unit of work patterns

I am trying to implement the generic repository and unit of work patterns according to this tutorial. In addition to the patterns I have also used Ninject to do dependency injection for my web app. ...
0
votes
0answers
53 views

Ninject 3.0 with Mono exception

I'm trying to get a .net application running in mono that references Ninject. I've downloaded the mono ninject build from here: ...
5
votes
2answers
108 views

How to initialize an object using async-await pattern

I'm trying to follow RAII pattern in my service classes, meaning that when an object is constructed, it is fully initialized. However, I'm facing difficulties with asynchronous APIs. The structure of ...
1
vote
2answers
86 views

Ninject multi-tier console application

I have a multi-tier console application with the following components: - data access layer - domain layer - uses data repository classes defined in the data access layer - engine - this contains the ...
0
votes
0answers
38 views

How to iterate over Ninject StandardKernel's configured bindings to debug?

In my Ninject binding module, public class CarModule : NinjectModule { public override void Load() { Kernel.Bind(scanner => scanner.FromThisAssembly().SelectAllClasses() ...
0
votes
1answer
80 views

Is it possible to use Ninject Factory Extensions' ToFactory method with open generics?

I'm building on a previously answered question in which ICar implementations are bound using Ninject Conventions Extensions and a custom IBindingGenerator, and the ICarFactory interface is bound ...
0
votes
1answer
61 views

Getting “MissingMethodException: Cannot create an instance of an interface” when binding generic interface to repository with Ninject

Following the guide here, but instead of StructureMap attempting to use Ninject. It throws up the "MissingMethodException: Cannot create an instance of an interface" error any time I attempt to ...
0
votes
0answers
42 views

Rebinding DependencyScope, will that cause problems in my WebApi

I'm not sure how to explain this... Essentially I am finding when request.GetDependencyScope() to obtain the latest dependency instance, unless I rebind the context to this latest scope I cannot ...
0
votes
1answer
73 views

Pass context to collection validators in FluentValidation with MVC integration

does anyone know how I could pass a context for one validator to a collection validator while using the MVC4 integration of FluentValidation and the Ninject Validator Factory integration? Example: ...
0
votes
1answer
74 views

How do I add a service layer to my UnitOfWork using Ninject?

I hit a little road block trying to set up DI. So given that I have this controller: public UsersController(IUnitOfWork unitOfWork) { // Stuff } I previously had this UnitOfWork implementation ...
1
vote
1answer
59 views

Putting DBContext scope to IService

I have a web app and a windows service app. The web app injects IPersonService into its MVC controllers. The windows app also uses IPersonService. The service takes 3 dependencies on IPersonRepo, ...
2
votes
2answers
62 views

Accessing Ninject objects from master view partial view

I am trying to access an object created by ninject within my layout view but I have no idea how to access them. Here is a brief outline of what I have tried so far:- Created by service and bound ...
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
71 views

How to add dynamically module to mvc app [closed]

I want to ask you what is (in your opinion) better aproach to dynamicly add modules to core MVC project. I find 2 approaches how to do it : ...
4
votes
1answer
159 views

Ninject Creating an Extra Instance when using NinjectHttpModule

For some reason Ninject is creating an additional instance of my object when I use NinjectHttpModule in my MVC 4 app. If I use NinjectHttpModule (the Ninject.MVC3 default) but do not actually have ...
0
votes
1answer
101 views

Ninject Inject Attribute On Property Not Working [duplicate]

I am using property injection in my custom role provider like so: public class MyRoleProvider : RoleProvider { [Inject] public IRoleRepository RoleRepository { get; set; } ... } My ...
0
votes
0answers
53 views

Mock classes in 3rd party library

I'm creating plugin for an application in C#. The plugin calls many methods from classes that reside in the dll from the application that can't be instantiated on their own without the application ...
0
votes
1answer
81 views

Ninject Singleton Scope

I was wondering what situations a Ninject Singleton scope could be useful in ASP.NET MVC. I was thinking in situations when the dependency didn't have any properties/variables that could change. For ...
0
votes
1answer
18 views

ninject.mvc3 not loading modules

I'm using ninject mvc3 via nuget in a MVC4 webapi application. No changes made to global.asax I have created a ninjectmode and placed it in the bin folder. I'm noticing that the line ' ...
1
vote
2answers
838 views

How to set up IIS 7 application pool identity correctly?

Having deployed my website to IIS7.5 I found one strange behaviour: when application pool identity is left to be ApplicationPoolIdentity by default (as recommended in IIS Application Pool Identities), ...
1
vote
1answer
64 views

Constructor dependency resolution for multiple ctors having same number of paramters

I have 2 constructors defined like so: public interface IMyService<T1,T2>{} public class MyService1 : IMyService<SomeTypeA,SomeTypeB> { public MyService2(string serviceAUri,IServiceB ...
0
votes
1answer
87 views

Using Ninject with objectdatasource in asp.net webforms?

I am trying to use Ninject 3 in my asp.net webforms application. It works fine except some pages that contains ObjectDataSource, the Select method of the ObjectDataSource throws a ...

1 2 3 4 5 38