Tagged Questions
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
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
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
95 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
78 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
51 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 ...
0
votes
0answers
77 views
Best way to inject data source into data access provider
I'm building a web application (ASP.NET MVC 4), and in the interest of learning (and saving myself headaches later) I've been looking at various patterns and best practices while designing it. So far, ...
0
votes
1answer
49 views
Ninject StandardKernel GetProvider
I'm trying to get the FullName of the class that's going to implement the interface. I use a StandardKernel
Kernel = new StandardKernel();
But I can't seem to get the info I want because
...
0
votes
1answer
106 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
339 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
70 views
Using IoC in an application that use a library that doesn't use IoC
I am currently using a library (SuperWebSocket) which is a websocket server library that use a bootstrap which know which instances to load from a configuration file. I have implemented a bootstrap ...
1
vote
1answer
33 views
Ninject Array Bind
I'm trying to use Ninject with WPF
I have same interface for all my views
interface IView
{
string ViewName { get; }
object Content{ get; private set; }
}
public partial class FirstView : ...
1
vote
1answer
83 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
1answer
76 views
Dependency Injection to the constructor in MS Unit Test using Ninject
I would like to know is there way i could inject dependencies to the constructor of MS Unit Test class using the Ninject.
Here is the code snippet for repository
public Class StudentRepository : ...
0
votes
1answer
145 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 ...
4
votes
2answers
170 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 ...
2
votes
1answer
313 views
IoC, UnitOfWork with Ninject and Entity Framework
Im trying to implement a generic repository to my service classes.
But when i try to bind my DbConext in Web layer, i need to reference Entity Framework.
My DbContext
public partial class ...
3
votes
1answer
189 views
Ninject inject into an attributes constructor, field or method
I am wondering if the following is possible, and if so how to do it.
I'll try and explain it with code bellow.
public class RandomClass
{
...
//class is filled with stuff of none importance ...
4
votes
1answer
159 views
Ninject Memoize Instances in Singleton Scope
I'm using Ninject to instantiate some objects with a constructor arg passed, e.g.:
class MyClass
{
public MyClass(string myArg)
{
this.myArg = myArg;
}
}
The number of instances ...
2
votes
1answer
545 views
Ninject Factory Extension Bind Multiple Concrete Types To One Interface
Introduction:
I'm using the Ninject Factory Extension to inject simple object factories into my service classes.
Here is my interface and two classes that implement it:
public interface ICar
{
...
2
votes
2answers
59 views
DI Service with No Dependent Services
I have been working with Ninject to implement an application using dependency injection. I feel like I have a pretty thorough understanding of the concepts and have really liked the loosely coupled ...
1
vote
1answer
112 views
how to get ninject to bind based on factory param -> namespace path?
I'm using Ninject 3.0.1.10 and ninject.extensions.factory 3.0.1.0 from NuGet - in the 'real' scenario I'll be using ninject.extensions.conventions as well (rather than manually binding IFoo), but I ...
5
votes
3answers
142 views
Ninject scoping - use same instance across entire graph being constructed
Let's say I have the following classes that I want to construct using Ninject, with the arrows showing dependencies.
A > B > D
A > C > D
I want to configure Ninject such that A is ...
1
vote
1answer
215 views
Ninject bind mulitple implementations to an interface
I'm looking at this tutorial, but not quite understanding how to create a factory that can provide me separate implementations of an interface.
...
3
votes
4answers
116 views
Is Ninject/DI useful in simple scenarios?
I've watched quite a few IOC/DI/ninject tutorials and videos over the last couple of days but I am still not convinced I get the point.
In most the examples they usually say something like, what ...
2
votes
2answers
211 views
Ninject 3.0.1.10 Missing IKernel.Get
I just updated Ninject from v3 to v3.0.1.10 using NuGet, and it broke my code. I can't find IKernel.Get, or related methods I depended on anywhere in the new library. I've scoured the Ninject website ...
1
vote
1answer
98 views
Dependency Injection, handling scope for non-singleton classes
I understand a lot of the appeal of using dependency injection frameworks such as Ninject / Spring / etc. I love the idea of coding up new classes without having to think about where the dependency ...
0
votes
1answer
329 views
Using Ninject with Udi Dahan's Domain Events
I'm using Ninject in an MVC project and am trying to implement Domain Events following Udi Dahan's pattern http://www.udidahan.com/2009/06/14/domain-events-salvation/
In the extract below, the ...
0
votes
1answer
96 views
How can I avoid service location in this situation? (Ninject)
I have a set of ***Converter objects that inherit from IConverter with the goal of deserializing an object from a string or XML:
public interface IConverter
{
object Convert(object value, Type ...
1
vote
2answers
144 views
Ninject - Different Solution Configurations
I am developing an application and using Ninject for DI. I would like to be able to inject a different object into a given method depending on the solution configuration I am using. Namely, in a ...
0
votes
1answer
128 views
Why is Ninject interceptor not called?
Quick question - I can't figure out the following:
I've written a Ninject module:
public void OnLoad(IKernel kernel)
{
kernel.Bind<GenericRepository>()
.ToConstructor(syntax ...
2
votes
1answer
275 views
Generic Ninject Factory
I'm trying to create a generic factory I can call to instantiate a class and its dependencies using Ninject constructor injection. It seems to work great, but its not sitting well with me, I don't ...
2
votes
1answer
137 views
Resolving cyclical dependency with class that can create instances of itself
I'm brand new to Dependency Injection and have been playing around with Ninject trying to make small test applications to get my head around the concepts. Mark Seemann's Dependency Injection in .NET ...
3
votes
1answer
154 views
Ninject injection based on a route data value
We've got an ASP.NET MVC application, that has a number of different areas. There are 2 areas that use the same C# classes from our service layer, but target different underlying data. I want these ...
1
vote
0answers
77 views
Inversion of control (IoC) on DataBase? [closed]
EDITED: I tried to make the question more clear.
Here is my question,
We have a single database and we have one code. But we use this code for two different regions. We separate some part of the ...
3
votes
1answer
360 views
Lazy Dependency Injection
I have a project where the Ninject is used as IoC container. My concern is that a lot of classes have such kind of constructors:
[Inject]
public HomeController(UserManager userManager, RoleManager ...
0
votes
1answer
65 views
Ninject DI - Placement of binding in an MVC3 application
I have a very layered MVC3 application (seperate projects for the domain, services, web, infrastructure, etc.)
I understand the concept of controller constructor injection, which MVC3 and Ninject ...
0
votes
0answers
167 views
HttpContext in Repository
I've been learning MVC for the last couple of months and am following the book Pro ASP.NET MVC 2 but coding for MVC 4 in Visual Studio 2012 Express. I've completed the SportsStore example, and have ...
2
votes
2answers
191 views
Patterns for using DI / IoC in multiple projects
I have a solution which has the following projects:
Core (contains classes for processing, not related to business objects / domain)
Domain (contains business objects)
Harness (console app)
MVC4 app
...
2
votes
1answer
387 views
Umbraco 4 + MVC + Ninject
I recently followed Aaron Powell's posts on supporting MVC controllers with Umbraco 4:
http://www.aaron-powell.com/umbraco/using-mvc-in-umbraco-4 and ...
0
votes
3answers
939 views
Ninject - Kernel in static class in class librarary project
I have the same question as Ninject - Kernel in static class?
but I am not using WCF, only a class library.
Is it better to have a static kernel or to instantiate it any time you want?
My UI (now in ...
3
votes
1answer
145 views
Overwriting in-code bindings with configuration file bindings for my IOC container
In the project we are working on, we are using Castle Windsor as an IOC container. At this moment we are specifying all our dependencies in a configuration file for flexibility.
Our config files are ...
1
vote
4answers
305 views
Searching for a better Dependency Injection / Inversion of Control Tool. Migrating from StructureMap
Why leaving StructureMap?
As stated by Jeremy Miller (The guy behind StructureMap): No Silverlight support
Why I need Silverlight support?
I'm starting to write WindowsPhone apps, so looks like I ...
2
votes
1answer
438 views
NInject Extension Factory
After reading the new documentation on NInject v3 and how to use the factory extension, apparently I still don't get it fully since my code throws exceptions all over the place...
I get this ...
0
votes
0answers
372 views
Nancy Ninject Module Construction
I'm trying to test my Nancy modules using Ninject as the IoC container. My problem is that I cannot seem to get Nancy to use my IoC bindings to resolve the NancyModule type.
I am using the latest ...
5
votes
3answers
320 views
Ninject Bind When Ancestor Of Type T
I've got a dependency chain that looks roughly like this:
public class CarSalesBatchJob
{
public CarSalesBatchJob(IFileProvider fileProvider)
{ ... }
}
public class MotorcycleSalesBatchJob
{
...
1
vote
1answer
231 views
How do I tell ninject 3 to use singleton scope by default for all types?
I want my application to always use services as singletons, how do I set up Ninject to use singleton scope by default. I am using conventions to register my types, do I need to use the Bind<> ...
0
votes
1answer
84 views
Ninject does not resolve dependency correctly in silverlight project
I have a silverlight 4 project with mvvmlight and ninject 3.x.
I've setup the container like this
kernel = new StandardKernel(new ViewModelModule(), new ClientSessionModule());
And the modules ...
1
vote
2answers
194 views
How to avoid VS assembly circular references in order to access DI container(Ninject)?
Imagine I have solution containing 2 class library projects : project1 exposes some interfaces, project2 exposes some interfaces and(!) consumes interfaces from project1. I have also project3 which ...






