1
vote
2answers
45 views

Dependency injection in long-running Windows service - Composition root the right idea?

I am writing a Windows Service that (if all goes according to plan) will run for months at a time. Throughout the lifetime of the service, it will maintain several WCF services (named pipes for ...
-1
votes
1answer
44 views

How to retain data in an object using modelbinding, retrieved from a repository, that isn't saved to the database?

The problem: I have a series of questions (shown 1 by 1) that have to be answered by the user. At the end of the series, an overview is shown of the questions and their given answers. Everything ...
1
vote
0answers
39 views

Bootstrapper does not load my NinjectModules

I am trying to use Bootstrapper with Ninject according to this official documentation. I have installed Ninject.MVC3 to initialize my Ninject container from nuget and I have created a test module like ...
1
vote
1answer
24 views

Ninject contextual bindinng like structuremap

Hi I am using Ninject IoC container. I can not convert the structuremap code to ninject. This is Structuremap code binding ...
1
vote
1answer
51 views

Ninject Property Injection Setup Issue [closed]

This question relates to an answer to a question I asked earlier (IoC setup and issue with inherited class). I've tried setting up property injection to overcome my issue in my other question however ...
1
vote
1answer
28 views

Inject into ToMethod binding

I'm not quite sure how to ask this so I'll just post my code sample and give a brief description of what I'm trying to do. I have the following bindings setup: ...
1
vote
1answer
45 views

Ninject ASP.NET MVC without default constructor

I've come across an issue where ninject will not work unless there is a blank default constructor in my controller. I register by bindings in NinjectWebCommon.cs in my app_start like follows: ...
4
votes
2answers
113 views

Configuring Ninject with Asp.Net MVC & Web Api

i have setup my project with Ninject IoC. My project has regular Asp.Net MVC controllers and Web Api controllers. Now, Ninject works with Web Api but Ninject doesn't work with regular Asp.MVC ...
0
votes
1answer
18 views

Ninject bindings order of execution

For a set of bindings like the ones below Bind<ITestInterface>().To<WHenBarHappensTriggerTarr1>() Bind<ITestInterface>().To<WHenBarHappensTriggerTarr2>() ...
0
votes
1answer
16 views

Change default scope for all bindings “to” a particular class

Is there any way to set the default scope for all bindings "to" a particular class. For instance if I have the following: kernel.Bind<IMyInterface1>.To<MySingletonClass>(); ...
0
votes
2answers
51 views

Ninject avoid use named bindings

I have got this code. foreach(device into xmlfile) { var kdevice = kernel.Get(type, parameters.ToArray()) as IDevice; devices.Add(kdevice); ...
1
vote
2answers
49 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 ...
0
votes
2answers
58 views

Ninject: Resolve list of all registered types with constructor parameters

I am able to get a list of all the registered types by doing var myTypes = kernel.Get<List<IMyInterface>>(); The MyType implementations need to take in a constructor argument though. I ...
3
votes
1answer
44 views

Using NInject, resolving IEnumerable<T> fails when injecting a a ctor arg, but not when doing Get<IEnumerable<T>>()

When using NInject if I set up a binding for IEnumerable, it will work if I directly request an IEnumerable, but not if another bound object requires an IEnumerable. Is this by design? class Program ...
1
vote
1answer
65 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
1answer
62 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
63 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. ...
1
vote
3answers
78 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
34 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 => ...
1
vote
0answers
74 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
71 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 : ...
3
votes
1answer
56 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
47 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 ...
1
vote
2answers
81 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
1answer
66 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 ...
2
votes
2answers
61 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 ...
0
votes
1answer
92 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 ...
4
votes
2answers
167 views

Compile-time / Post-Build Dependency Injection IoC?

I currently use NInject to bind interfaces to concrete types and inject those into my classes. However, it is my understanding that this is a run-time affair. To me, it seems like a point of attack if ...
0
votes
1answer
102 views

Problems with Castle dynamic proxy + Ninject as DI

I trying to build nice architecture for my project and I decided to use Ninject as DI and Castle project dinamic proxy to add the caching for my repositories. Unfortunatly I get a exception. Here is ...
0
votes
1answer
94 views

Having trouble integrating Ninject

This one is driving me mad. I've read the Ninject docs, I've read the docs for the Ninject MVC extension, I've lost count of how many related SO questions I've read, and I have no idea where the ...
0
votes
1answer
239 views

Unit of Work with Dependency Injection

I'm building a relatively simple webapp in ASP.NET MVC 4, using Entity Framework to talk to MS SQL Server. There's lots of scope to expand the application in future, so I'm aiming for a pattern that ...
1
vote
1answer
115 views

Ninject EF4, Repository and Unit of Work

I have several projects in my solution which access the same data so I am implementing data access later in a separate project. Currently I am using EF4, a generic repository and a Unit Of Work ...
0
votes
1answer
176 views

WebAPI. Dependency injection with Ninject in case of inheritance

I'm pretty new to ASP.NET WebApi project, but hopefully I'll put everything straight enough. After creating couple CRUD Controllers a brilliant idea come to my mind - write generic base CRUD-web-API ...
2
votes
2answers
127 views

Ninject bind all classes implementing the same interface

I have an interface class: public interface IStartUpTask { bool IsEnabled { get; } void Configure(); } I have multimple classes implementing the same interface One of the classes looks ...
1
vote
3answers
96 views

Stack overflow when resolving services with Ninject

I'm trying to resolve a known fixed list of Foo services (in singleton scope) using NInject; this resolution happens in a FooProvider's constructor. The problem is that each Foo will need this ...
2
votes
1answer
109 views

Windows 8 and Ninject : Reflection method cannot be used on the current platform

I have a windows 8 app solution and I am using MVVM. So I have the viewModelLocator and that does it's job. But now I also want ninject to do some dependency injection (since the viewModelLocator is ...
1
vote
1answer
61 views

I am trying to use Ninject for the following scenario

My requirement is very similar to the question asked here - With.Parameters.ConstructorArgument with ninject 2.0 This may be a dumb question -- But, isn't the approach of sending parameters to the ...
1
vote
1answer
78 views

Is DI Binding of an Open Generic an Anti-Pattern?

Take this example : Bind(typeof(IRepository<>)).To(typeof(Repository<>)); This is valid for NInject and my question is whether this is an abuse/anti-pattern. The problem with this is ...
0
votes
0answers
281 views

Entity Framework, Ninject dependency injection, and ASP.NET MVC 3, with existing .MDF file as database

I'm making a long and detailed post here, but I sincerely believe it's better to provide as much info up front. If any further clarification is needed, please ask. My heartfelt thanks to you for ...
0
votes
1answer
67 views

How to correctly implement DI using EF (DB first)?

I'm trying to implement DI (using Ninject if it does matter)in my project. For now i have QuestionController,which is using QuestionRepository: private readonly IQuestionRepository ...
0
votes
2answers
40 views

When using a DI framework, how does a new service know what other services are available?

In a large project that is using a DI framework (such as Ninject in my case), what options exist when implementing a new "service" to find out what other "services" are available to be used as ...
1
vote
1answer
143 views

Migration Ninject -> Simple Injector

We use Ninject in our project, but have some performance problems. It will be interesting to test the same project with Simple Injector. Do you know some kind of guides that make the migration ...
1
vote
1answer
75 views

Ninject Contextual Binding on MVC Request

I have an unusual situation injecting a service into an ASP.NET MVC Controller. The Controller provides a single action to render a side-bar menu on the page, and the service injected into the ...
0
votes
1answer
125 views

Ninject in a three tier application

I am building a standard three tier app. 1 Console app for front end 2 Business logic layer 3 Data layer The main purpose is to display some customer data from a database table. I'm trying to ...
0
votes
1answer
77 views

Ninject - basic use

I have a class with Ninject but I don't know Ninject so hight. Why always must type this method? protected override IController GetControllerInstance( System.Web.Routing.RequestContext ...
2
votes
2answers
175 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 ...
4
votes
2answers
150 views

One samurai with a sword and one with a dagger

Thanks for looking. I'm kind of new to Ninject and like it so far. I get the part where you bind one thing in debug mode and bind another in release mode. Those are global bindings where you have to ...
1
vote
4answers
63 views

Is a good practice Inject IKernel insted business interface dependencies

I'm developing and application and I use NInject framework to solve dependencies problems but the constructors is too big. Some constructors have 5, 8, 10 parameters. and for solve this I have an ...
0
votes
1answer
42 views

Dependence injection into generic class

I have generic Result<T> generic class which I use often in methods to return result like this public Result<User> ValidateUser(string email, string password) There is ILoggingService ...

1 2 3 4 5 10