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
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 ...
2
votes
2answers
57 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 ...
3
votes
2answers
113 views
Pass parameter to method binding
I have a very simple Ninject binding:
Bind<ISessionFactory>().ToMethod(x =>
{
return Fluently.Configure()
.Database(SQLiteConfiguration.Standard
...
0
votes
1answer
87 views
Ninject property injection issue
Following on from my earlier question on Ninject
I still cannot get property injection working..
The constructor parameter is injected but the property is not..
Am I doing this wrong??
public ...
2
votes
2answers
344 views
Get ninject factory extension to allow factory parameters be passed to dependencies
Using the Ninject Factory extension, you can automatically generate factories, and let the factory pass parameters to the class' constructor. The following test passes:
public interface IBar
{
...
3
votes
1answer
119 views
Ninject and Decorators
Given:
public interface IBatchProcess
{
void Run();
}
and multiple implementation of:
public class BatchProcessOne : IBatchProcess { ... }
public class BatchProcessTwo : IBatchProcess { ... }
...
1
vote
1answer
644 views
Ninject basics with example please
Scenario:
Quiet new to DI and Ninject but would love to master it so that I know what'm doing and why.
While going through few examples and documentation I noticed the following:
1. ToConstructor.
...
2
votes
2answers
424 views
Conversion of V2 Ninject Binding to V3
I've been banging my head at this for about 8 hours now, and I just can't seem to find a simple explanation on how to change my custom bootstrapper for ninject (Last worked on the code back in ...
0
votes
2answers
286 views
Is Ninject's Dispose method really necessary?
We are currently evaluating if we could use Ninject for future projects. One condition is, that the libary should NOT force us to call the Dispose method. So, is it really necessary? Will not calling ...
1
vote
1answer
134 views
Skipping Dispose on Deactivation in Ninject
I am just starting to use Ninject on a (large) project and am wading in by only using DI for a portion of it to start. I have a subsystem that is organized using constructor injection extensively. ...
2
votes
1answer
179 views
Contextual / Conditional dependency injection with depth greater than 1 with Ninject?
I have a IDataContext interface implemented by a InMemoryDataContext and MyApplicationDataContext. This is consumed by all of my repositories which are defined as BananaRepository : IBananaRepository ...
1
vote
1answer
191 views
How do I inject/create an object at runtime based on some processing using Ninject?
How do I inject and create an object at runtime based on some processing?
In the code below, the main calculator (GridCalculator) (snipped for brevity) has a dependency on a PricesCalculator. ...
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;
...
1
vote
1answer
449 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 ...
2
votes
2answers
686 views
How to Inject properly an IDBContextFactory into a controller's inject IDomainFactory using Ninject MVC3?
Preliminaries
I'm using Ninject.MVC3 2.2.2.0 Nuget Package for injecting into my controller an implementation of a IDomain Interface that separates my Business Logic (BL) using an Factory approach.
...
6
votes
2answers
3k views
I need more Ninject practical examples
In the past, I used swiftsuspenders that is an actionscript 3 IoC controller. Basically the first version of switfsuspender had something similar to the Ninject kernel that was called injector.
If I ...
4
votes
1answer
171 views
How do I ensure that NInject2 disposes of objects in the correct order?
Specifically, if I use NInject to create a bunch of objects that have been bound in singleton scope, I expect NInject to release them in reverse order.
I have a test case as follows, I want to know ...
1
vote
1answer
266 views
Ninject ActivationBlock as Unit of Work
I have a WPF application with MVVM. Assuming object composition from the ViewModel down looks as follows:
MainViewModel
OrderManager
OrderRepository
EFContext
...
0
votes
1answer
648 views
Using WithConstructorArgument and creating bound type
I have a binding that looks like this:
kernel.Bind<IRepository<Holiday>>().To<RepositoryBase<Holiday>>();
The problem is that RepositoryBase takes a contructor paramter of ...
0
votes
1answer
279 views
Add Ninject Module to existing kernel
I have a scenario where I have a bunch of features in an application which are being enabled and disabled on the basis of network devices being present on the network. I'm using Ninject to manage my ...
4
votes
2answers
463 views
Post-initialization object creation with ninject
I'm new to Ninject (and DI in general).
I understand how the kernel loads modules, and the code I've written thus far tends to have a single line:
myKernel.Get<MyApp>()
which constructs ...
0
votes
1answer
229 views
How to retrieve all bindings for a generic interface using Ninject
Using Ninject 2.2, I have the following failing test (simplified):
public interface IGenericView<T>
{
}
public interface IDefaultConvention
{
}
public class DefaultConvention : ...
1
vote
1answer
127 views
Get different object from Ninject depending on ConstructorArgument
I have following code:
kernel.Get<IFoo>(new ConstructorArgument("rule", myRule))
I want that I get different objects depending of the value in myRule. How do I do that?
Something like this ...
1
vote
0answers
154 views
Ninject: ConstructorArgument doesnt work
I use NInject "2.2.0.0". I have a class ShellView which has 2 constructors:
public ShellView()
{
InitializeComponent();
}
public ShellView(IScreen screen)
: this()
{
...
4
votes
1answer
770 views
Moq with constructor argument
I have a factory that looks like below:
public IFoo GetFoo(IFile file)
{
return _kernel.Get<IFoo>(new ConstructorArgument("file", file));
}
It works fine until I use Moq to mock IFoo. In ...
5
votes
2answers
505 views
Error activating HttpContext - More than one matching binding is available
I have an ASP.NET MVC app with a simple NinjectModule:
public class MainModule : NinjectModule
{
public override void Load()
{
Bind<AppSettings>().ToSelf().InSingletonScope();
...
2
votes
1answer
530 views
Ninject.MockingKernel.Moq security exception
I am using Ninject for my IoC container and I'm trying to write some unit tests. I found the Ninject Mocking Kernel so I thought I'd give it a go but I can't get the simplest test to pass. I am ...
5
votes
1answer
809 views
Ninject binding with WhenInjectedInto extension method
I feel I am missing something obvious. I've read several related questions on here and I've read the updated contextual bindings page on Ninject's wiki but alas it still doesn't work.
I am trying to ...
0
votes
1answer
102 views
Contextual binding two levels deep in the architecture
Consider the following integration test. I want to find a way to make the last Bind<> call function correctly.
using System.Collections.Generic;
using ...
2
votes
1answer
506 views
Binding Generic Repository and Specific Repository with Ninject 2.2
I have a IRepository that I have implemented in Repository and I extended Repository for specific type as UsersRepository I need to bind all types using the generic binding for Ninject however when ...
0
votes
2answers
158 views
Is it correct to inject a Facebook SDK wrapper usign InSingletonScope with Ninject?
I have written a wrapper around the C# Facebook SDK usign the following code:
public interface IFacebookService
{
Uri GetLoginUri(string returnUrl);
FacebookResult OAuth(string url, string ...
17
votes
3answers
2k views
Ninject InRequestScope missing
Have a couple of questions regarding the latest version (2.2.1.4) of ninject.
Was trying to Bind a Linq2sql DataContext to a concrete implementation InRequestScope (in a class library project)
...
5
votes
3answers
361 views
Dependency Injection: How to configure interface bindings for wrapping
So, let's say I have an interface IThingFactory:
public interface IThingFactory
{
Thing GetThing(int thingId);
}
Now, let's say I have a concrete implementation that retrieves Things from a ...
2
votes
1answer
78 views
Intercepting injection
I am injecting repositories into a class, and once I've injected the repositories, I'm assigning my context to each of the repositories so I have my unit of work.
What I'm trying to figure out is, is ...
2
votes
1answer
472 views
Context and parameter-specific injection down a Ninject 2 dependency graph
I am interested in creating an instance of an object that implements my IDistributor interface using IoC and Ninject.
I have created a concerete implementation (Distributor), and all dependent ...
0
votes
1answer
318 views
Ninject get method set constructor argument to null
I am using Ninject for implementing IoC/DI in my application. It has been working well in the whole application except one case, where i am setting a constructor argument of type User Defined Class.
...
1
vote
1answer
284 views
Ninject GetAll return duplicate object
I have this code :
abstract class GenericAbstractClass<T> where T : struct { }
class ImplementationClass : GenericAbstractClass<int> { }
class Program {
static void Main (string[] ...
1
vote
3answers
1k views
Property Injection without attributes using Ninject in an abstract base controller in MVC3
I have the following code:
public abstract class BaseController : Controller
{
public IUserService UserService { get; set; }
}
All my controllers inherit from this base controller. I started ...
1
vote
1answer
234 views
Is it possible to use Ninject without inheriting from NinjectHttpApplication?
I'd like to Ninject as the IOC container for my WebForms solution to achieve property injection, but the global.asax is already inheriting from another class so I cannot inherit from ...
0
votes
1answer
397 views
Ninject Injection Issues in ASP.NET MVC 3
I have three projects that will use DI. My project is an ASP.NET MVC 3 site. I installed the ninject MVC package from nuget which added my bootstrapper. I registered my binding.
NinjectMVC3.cs
...
0
votes
3answers
361 views
Whats the difference between using these 2 methods?
I upgraded from ninject 2.0 to 2.2 and nothing works anymore.
When I use nuget it makes this
[assembly: WebActivator.PreApplicationStartMethod(typeof(MvcApplication3.App_Start.NinjectMVC3), ...
3
votes
4answers
850 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:
...
2
votes
2answers
1k views
How to use Ninject to inject services into an authorization filter?
I am using asp.net mvc 3, ninject 2.0 and the ninject mvc 3 plugin.
I am wondering how do I get service layers into my filter(in this case an authorization filter?).
I like to do constructor inject ...
2
votes
1answer
1k views
Ninject: Resolve dependency by name only
I have a WPF view\view-model binding pattern where I would like to resolve dependencies from Ninject by name only, rather than by type or type+name. I want to bind my view-models by name with Ninject, ...
6
votes
2answers
822 views
Is Kernel.Get<T>() threadsafe + good pattern to share the kernel among components
Is Kernel.Get() threadsafe? My goal is share an instance of my kernel among all my componenets and they may all very well call Kernel.Get() at the same time on different threads.
Is Kernel.Get() ...
0
votes
1answer
482 views
How to make a generic nhibernate repository that works with ninject?
I am trying to make my first generic repository. I am starting with the real simple ones but I am unsure how to hook it all up to ninject and use it through constructor injection.
public class ...
0
votes
1answer
404 views
How to wrap lazy loading in a transaction?
I am using nhibernate and the nhibernate profile what keeps throwing this alert.
Use of implicit transactions is discouraged"
I actually wrap everything in a transaction through ninject
public ...
3
votes
1answer
855 views
How to add a nhibernate transaction to ninject?
how can I make it so on every http request I start a transaction and at the end I commit my transactions?
I am already using InRequestScope for my sessions and have this for my ninject.
public class ...
1
vote
1answer
318 views
EF4.0, repositories, and Ninject 2
This is in continuation of two ongoing problems I'm facing: Problems trying to attach a new EF4 entity to ObjectContext while its entity collection entities are already attached. and EF4.0 - Is there ...
