tag for questions related to ninject -2 version of ninject dependency injector
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
...
1
vote
1answer
18 views
Recommended v2 resource for the Activation Process in Ninject
Have been reading the documentation on Ninject and the Activation Process was changed in v2 and there is no supporting documentation at present. Can someone suggest a good resource?
3
votes
2answers
129 views
c# TDD first time in ServiceBase
I'm trying to implement Test-driven development for the first time.
My project is a c# in dotnet 3.5.
I'm have read the book Professional Test Driven Development in c# and now i want to test my ...
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 ...
0
votes
1answer
47 views
NInject ConstructorArgument with lambda expression
Is there any way to create an instance of ConstructorArgument using lambda expression instead of hardcoded string to define the name of the property?
Something like this:
var validator = ...
2
votes
1answer
921 views
Ninject WithConstructorArgument : No matching bindings are available, and the type is not self-bindable
My understanding of WithConstructorArgument is probably erroneous, because the following is not working:
I have a service, lets call it MyService, whose constructor is taking multiple objects, and a ...
0
votes
1answer
161 views
How to fake an HttpContext and its HttpRequest to inject them in a service constructor
In a console application, I would like to use a service that would normally need the current http context to be passed to its constructor. I am using Ninject, and I think I can simply fake an http ...
3
votes
2answers
112 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 ...
0
votes
1answer
50 views
Understanding Ninject with a more complex scenario
I am trying to use ninject to.. well do what ninject does..
Basically the injection isnt happening.
In my code below I am creating the Kernel in my "test" and expecting an IDrinkCan implementation ...
1
vote
1answer
261 views
Ninject: Binding an interface with a generic that is also an interface
I have searched this issue but with no luck. Here we go.
Suppose I have an interface:
interface IQueryRepository<T> where T : class
and I want to bind any requests for:
...
0
votes
0answers
98 views
Conditional binding NInject
I need to instantiate an object at runtime on the basis of an input parameter.
public class GameOfTheGoose
{
IKernel _Kernel;
public GameOfTheGoose()
{
...
0
votes
1answer
63 views
MVC DisplayNameAttribute and Ninject: Possible?
Let's assume following basic Project-Setup:
- Core
-- Attributes
--- CustomDisplayNameAttribute : DisplayNameAttribute
- UI
UI represents the MVC Web interface, the core implements all the domain ...
1
vote
0answers
84 views
Am I trying to use Ninject incorrectly, or am I missing something obvious?
I'm developing an ASP.NET MVC web application. I wanted to build a nice data layer that abstracted everything. So like a good data layer, the controller wouldn't talk directly to the database.
...
1
vote
2answers
105 views
Dynamic/context-sensitive constructor injection
I would like to inject the constructor parameter IActionLogger actionLogger, but want the other parameters largeBucket, smallBucket and amountToRetrieve are context-sensitive (not sure if that's the ...
-1
votes
1answer
197 views
Security Exception with medium trust, ninject and entity framework
I keep getting this exception whenever I try running my project in medium trust. The project is MVC Forum, and even though I don't need to run any of my own sites in medium trust, I figure I better ...
2
votes
2answers
343 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
118 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
639 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. ...
0
votes
1answer
224 views
Ninject 2.0 InRequestScope() causing me problems - dependencies not being disposed
I'm using Ninject 2.0 with an MVC 2/EF 4 project in order to inject my repositories into my controllers. I've read that when doing something like that, one should bind using InRequestScope(). When I ...
0
votes
1answer
85 views
wiring generic interface type to different implementations
I'm trying to get this working, and I can't find a good solution. I know that StructureMap can do this, but I'm stuck with Ninject.
What I have:
public interface IFormHandler<T>
{
void ...
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
2answers
570 views
ASP.NET Web API (Self Host) + Ninject - Default Bindings
I'm converting a project from WCF Web API to ASP.NET Web API - thanks MS :(
Self Hosting POC code:
static void Main(string[] args)
{
var kernel = new StandardKernel();
const ...
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
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 ...
1
vote
1answer
218 views
ReflectionPermission problems when using Ninject 2.2, Fluent NHibernate in a Medium Trust environment
I am using (from Nuget packages) Ninject 2.2 and Fluent NHibernate 1.3 (NHibernate v3.2 under the hood) and I've hit a brick wall.
I am using Fluent config to point to my database, mappings etc:
...
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.
...
3
votes
1answer
1k views
Ninject, passing constructor argument to the kernel
Here is my problem:
I want to pass in one of the values to the constructor every time I request an instance form the kernel. I written some code below to illustrate the problem. The test is not ...
2
votes
2answers
1k views
ASP.NET MVC 3 Ninject Custom Membership and Role Provider
Hi i got some problems enabling custom Membership and Role Provider, i got following error:
***Description: An unhandled exception occurred during the execution of the current web request. Please ...
1
vote
1answer
59 views
Ninject summon graphs with argument
Here is my problem. I have a presenter class, lets call it 'Presenter' that takes an IDataSource as a constructor argument. There are different implementations of the IDataSource interface. I would ...
0
votes
1answer
185 views
Understanding what this ninject bind is doing
I am building out a basic ninject container to replace phone container in Caliburn.Micro as I want to stick with one IoC container for multiple projects. Plus its fun...
One of the methods is ...
8
votes
2answers
364 views
Recommended Pattern for Lazy-loading Portions of Object Graph from Cache
I'm using memcache behind a web app to minimize the hits to our SQL database. I'm storing C# objects into this cache by marking them with SerializableAttribute. We make heavy use of dependency ...
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 ...
1
vote
0answers
58 views
Ninject binding setup
I have a weird case where I'm using NInject and I'm not sure how to proceed. Our repositories in this instance are custom-written sql generators, and not using linq to sql; nHibernate, etc.
In order ...
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
547 views
ASP.Net MVC 3 project with Ninject and HierarchicalLifetimeManager?
First of all, dependency injection is relatively new to me. I did a first project using Unity.MVC3, and now I would like to switch to Ninject on a new project, since it seems to be the most popular ...
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
...
1
vote
1answer
559 views
Intercept Ninject instance activation?
I'm trying to put an example together of using Caliburn Micro on WP7 with Ninject. Everything was pretty straight forward. However, I'm stuck on how to go about firing an event once an instance is ...
0
votes
1answer
647 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 ...
2
votes
2answers
810 views
No Source Available Error With Ninject When Debugging Code
I have used NuGet to install the latest version of Ninject (v2.2.1.4).
I have then created my own NinjectDependencyResolver (credit to Adam Freeman & Steve Sanderson):
public class ...
0
votes
1answer
278 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 : ...
0
votes
1answer
468 views
No available source for Ninject bootstrapper
I have been added Ninject Mvc Extensions via nuget to my project and it has been put NinjectMVC3 file into App_Start folder. If i stepping into my source codes, "No available source" page appear front ...
0
votes
2answers
179 views
MVC 3 / C# General Design opinions
I am playing with some code and was needing an opinion on a few items.
I need to return a User object back to my controller from the Authentication service which is injected in the controller via ...