Tagged Questions
1
vote
1answer
25 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
...
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>()
...
1
vote
2answers
25 views
Use Ninject.InSingletonScope() for all classes in defined namespace
I have a set of repositories in a class lib that are required to be singletons.
They share library with other classes as well - classes created as singletons.
Is it possible to configure Ninject to ...
1
vote
0answers
75 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
36 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
76 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 ...
1
vote
2answers
130 views
How do I bind generic types with inheritance using Ninject Conventions extensions
How can I bind InitializerForXXX (non-generic implementation) to IInitializer<XXX> (generic interface) using Ninject Conventions so that requests for an IInitializer<T> resolve a ...
0
votes
1answer
107 views
Delegate factory in Ninject
Autofac got delegate factories, but I can't find any information about how to implement this in Ninject. The reason for me wanting to use this is to avoid referencing the container itself, but to be ...
1
vote
0answers
590 views
Autofac to Ninject
In order to set unified standard in all my development I created a Core lib.
One of the main features is to send Action<...> to dependency registrar that based on Autfac.
I would like to move to ...
9
votes
4answers
156 views
Ninject bindings for a dispatcher implementation of an interface
I have an interface:
public interface IService
{
void DoStuff(int parm1, string parm2, Guid gimmeABreakItsAnExampleK);
}
I'd like to configure Ninject (v3) bindings so that I can have a ...
3
votes
1answer
191 views
Ninject - binding generic types with constraints
Is it possible to set up a ninject binding to respect a generic constraint?
For example:
interface IFoo { }
interface IBar { }
interface IRepository<T> { }
class FooRepository<T> : ...
0
votes
1answer
92 views
Custom ModelMetadataProvider is a singleton but depends on a request-scoped service
In my ASP.NET MVC project, I have a custom ModelMetadataProvider that requires a service PropertyAccess. I'm currently using constructor injection and an IOC container (Ninject) to do the dirty work. ...
2
votes
1answer
125 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 ...
4
votes
2answers
273 views
Which is a good approach to test Ninject bindings?
We use ninject in all our projects, and as you will know, sometimes it becomes hard to test if the kernel would be able to resolve every type at execution time, because sometimes control gets lost ...
2
votes
1answer
353 views
Binding Generic Types in Ninject 3.0
I want Ninject to create Bindings for all types within a specific assembly that implement a generic interface, without specifying them all at runtime. Kind of like how open generics work in Autofac.
...
3
votes
1answer
279 views
Ninject and WCF ServiceAuthorizationManager
Does anyone know how I can inject a repository into a ServiceAuthorizationManager subtype in a WCF service?
I am creating a class that extends ServiceAuthorizationManager and calls a method in my ...
1
vote
2answers
563 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 ...
3
votes
1answer
756 views
AutoMapper with Ninject
I've been trying to setup AutoMapper to instantiate all objects via Ninject.
I've got the following code in my global.asax file
Mapper.Configuration.ConstructServicesUsing(x => kernel.Get(x));
...
9
votes
2answers
2k views
IoC (Ninject) and Factories
If I have the following code:
public class RobotNavigationService : IRobotNavigationService {
public RobotNavigationService(IRobotFactory robotFactory) {
//...
}
}
public class RobotFactory : ...
2
votes
2answers
259 views
get singleton instance
I am testing Ninject and trying to understand how to inject repository to singleton class.
Below is working repository and singleton class example...
public interface ITestRepository
{
void ...
2
votes
2answers
297 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 ...
1
vote
2answers
1k views
Ninject / IoC proper initialization of StandardKernel
I'm just getting started with IoC containers and have picked up Ninject to start with. I understand the principle of the separate modules you can incorporate into a Kernel. But I'm curious if I should ...
1
vote
1answer
448 views
Ninject Pass Delegate into WithConstructorArgument
I have a need to point to a method in Ninject bindings as part of a constructor argument. The constructor for the class looks like this:
MyObject(Func<Populator> param1, TimeSpan time)
I have ...
0
votes
1answer
449 views
Error injecting dependency into Controller constructor
I am starting a project in ASP.NET MVC using Ninject to implement dependency injection. Here is my current architecture:
Abstract Repositories
public interface IAccountRepository<T> where T : ...
1
vote
2answers
138 views
.Net IoC framework sporting external settings? command line params? XML merging?
Here's my problem: I have a computer program (for simulating a vehicle) with a lot of configurable parameters (on the order of 100). The company has traditionally had their own hand-rolled IoC ...
1
vote
1answer
263 views
Pass dynamic parameters to factory / composition root in Ninject (or perhaps any container)
Here is an example.
foreach (var doc in documents)
{
var processor = this.factory.Create();
processor.Process(doc);
}
The factory internally calls kernel.Get<IDocumentProcessor>().
...
3
votes
2answers
1k views
Having trouble understanding ninject (or just IOC container in general) over factory DI?
Okay, so recently I've been reading into ninject but I am having trouble understanding what makes it better over why they referred do as 'poor man's' DI on the wiki page. The sad thing is I went over ...
1
vote
3answers
505 views
Using Ninject in .NET RESTful application?
I'm new to RESTful services and haven't had to freshly wire up a stack using IoC in a while, so this is giving me a mild stroke.
I have a WCF service that looks like this (simplified):
public ...
4
votes
2answers
575 views
IoC / DI with MVC Attributes
One of my MVC attributes has a dependancy on a service which I was hoping to inject via the constructor. Obviously the MVC attribute requires a parameterless constructor too.
public MyAttribute()
...
0
votes
1answer
108 views
How to inject more classes in some controller using ninject
I am completely new to dependency injection. I am using asp mvc and ninject.
I extended a class from 'DefaultControllerFactory' and added following 'AddBindings' code:
private void AddBindings()
...
1
vote
1answer
260 views
Manual disposing is not working if using NInject RequestScope
I am using RequestScope of NInject in my application
Bind<ITestClass>().To<TestClass>().InRequestScope();
But when i called dispose method on this class, method calls and the code ...
8
votes
3answers
886 views
How should you use UnitofWork pattern on my asp.net-mvc site (using nhibernate and ninject)
i have followed the pattern on this site to hook up ninject and nhibernate to my asp.net-mvc3 site.
Here is the code in my global.aspx.cs:
internal class ServiceModule : NinjectModule
{
public ...
2
votes
1answer
63 views
Assigning the correct repository in a class with multiple repositories with the same base type using Ninject
Example
As an example of what I'm talking about let's say I have 2 repositories:
SubordinateRepository : IRepository<User>
{
// ...
}
Subordinate repository is used for getting the ...
1
vote
1answer
453 views
Ninject using “In SCOPE”
I want to implement IoC in my application, I've few queries regarding that
While binding Interfaces to Classes, i want to specify the scope of the object
While resolving the class object, i want it ...
8
votes
1answer
2k views
Ninject - binding constructors with arguments / Entity Framework connection string
Please forgive my ignorance, but I am very new to IOC and NinJect. I have searched for high and low for easily understandable solutions but so far they have eluded me.
So far I have the following and ...
5
votes
1answer
203 views
Named Services in IoC Containers - A Bad Idea?
It seems like a bad idea to use service keys (or 'named services') when composing a container.
Using named services requires us to either annotate our constructor parameters with matching keys (thus ...
3
votes
3answers
177 views
IoC/DI - Implementation in internal class having only internal methods
We are implementing IoC/DI in our application using NInject framework. We are having internal classes having internal methods. To implement IoC/DI, we have to extract interfaces. But if we are having ...
11
votes
1answer
923 views
Avoiding Service Locator Antipattern with legacy app not designed for IOC
I have read often that Service Locators in IOC are an anti-pattern.
Last year we introduced IOC (Ninject specifically) to our application at work. The app is legacy, it's very big and it's ...
6
votes
7answers
479 views
How can one use an existing instance to select a type to create in an IoC container
this is probably just a newbie question, but I have the following:
public class FooSettings {}
public class BarSettings {}
public class DohSettings {}
// There might be many more settings types...
...
3
votes
4answers
844 views
How to configure Ninject so that it would inject right instance depending on preciously injected instance
I can't find right words for my question so i will let my code speak instead.
I have Repository:
class Repository
{
public Repository(DbContext ctx)
{
}
}
then i have this bindings:
...
0
votes
1answer
102 views
How to use Ninject's IsSingletonScope method?
I have a follwing Ninject bindings in my project.
Bind<IThingsDataContext>().To<ThingsDataContext>().InSingletonScope();
Bind<IThingViewModel>().To<ThingViewModel>();
...
2
votes
2answers
594 views
Ninject parent child container heirarchy (like inheritance)
Does Ninject have anything similar to the Unity concept of parent/child containers to provide a basic inheritance model? I googled but didn't find anything.
7
votes
1answer
768 views
Setting up Ninject with the new WCF Web API
So I've been playing around with the latest release of the WCF Web API and decided I wanted to dive into implementing Ninject with it.
Based off what I've read I need to implement the interface ...
0
votes
1answer
133 views
Return a component instance by key (using Ninject Container)
Is it possible to return a component instance by key using Ninject?
The equivalent to Castle Windsor is for ex.:
container.Register(Component.For< ConcreteA >().Named("KeyForConcreteA"));
3
votes
5answers
830 views
How to Avoid Coupling with an IoC Container
I'm in the process of developing an extensible framework using DI and IoC. Users must be able override existing functionality within the framework by dropping their own implementations into the ...
4
votes
1answer
220 views
Stability of Ninject.Mvc and Ninject.Wcf extensions
I'm planning to start using Ninject 2.2 in enterprise-like project after playing with it for some time. Can anyone confirm no issues with these extensions in production use? I especially worry about ...
2
votes
1answer
541 views
Need help understanding how Ninject is getting a Nhibernate SessionFactory instance into a UnitOfWork?
So using some assistance from tutorials I have managed to wire up a Nhibernate session to my repositories and my repositories to my controllers using Ninject. However, there is one peice of the setup ...
0
votes
1answer
250 views
Pattern for Resolving Nested Dependencies at Run-Time using an IoC Container
I have a class that coordinates preparation, validation, and cleansing routines for a package for data files. I am struggling to find a pattern that feels right when using an IoC container (Ninject ...
3
votes
4answers
1k views
Still need help understanding why Ninject might be better than manual DI
This is an extension to the question Why do I need an IoC container as opposed to straightforward DI code?
I've been learning Ninject and came up with the following example, the example goes through ...
4
votes
4answers
657 views
Need help getting Ninject equivalent for StructureMap syntax
I am trying to implement IoC (Ninject) for Ravendb and have ran into a little snag. I am using code from ...
