NInject is a dependency injection framework for .NET applications.

learn more… | top users | synonyms

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 ...
1
vote
1answer
65 views

is kernel singleton, can I create it whenever needed

I am trying to use Ninject for the first time, and I am not sure how to use it. Lets say that I am not using injection (constructor or method), can I freely do; var kernel = new StandardKernel(); var ...
0
votes
0answers
28 views

Can Ninject construct the ViewModel through Prism on WP7?

I have the following in MainPage.xaml <UserControl.Resources> <viewModels:MainViewModel x:Key="MainViewModel" /> And this <controls:Panorama x:Name="MyPanorama" ...
0
votes
0answers
88 views

Prism 4 + IoC samples for WP7 or WP8?

I'm looking for best practices for dependency injection on WP7/PW8 using Prism and preferrably Ninject. Is there any samples covering what usage Prism can do with the IoC container, and best practices ...
0
votes
1answer
87 views

Ninject.Extensions.Conventions Inject Singletons in Lists binding on Interface and BaseClass

I got the following testcase that will fail with: Expected: same as ArxScriptsTests.Engines.Ioc.Examples+A But was: ArxScriptsTests.Engines.Ioc.Examples+A The question is, how to get it ...
1
vote
2answers
75 views

Is there a reliable way to scope Ninject bound services to an NServicebus message handler?

I want to bind my Entity Framework context to be scoped per NServicebus message. Would the following code successfully do that? Bind<IDbContext>().To<MyContext>() .InScope(x => ...
0
votes
1answer
33 views

Referencing a common instance from a DI constructor

Using Ninject DI, I have implemented two interfaces that I instantiate from my MVC controllers. For example: public class MyController : Controller { private readonly IUnitOfWork _UnitOfWork; ...
0
votes
0answers
104 views

ninject self host web api mvc4

I am trying to setup dependancy resolution using ninject on a web api project which is self-hosted i.e it runs as a console app instead of inside a app server.Which extentions should i use and where ...
0
votes
2answers
70 views

How to inject IClock into _Layout in MVC4?

The default MVC template uses "@DateTime.Now.Year" to display the copyright year, but I'd much rather use NodaTime everywhere. I'm currently using Ninject to inject an instance of IClock into ...
0
votes
1answer
38 views

Ninject.Extensions.Wcf.SelfHost with nuget?

I pulled the latest Ninject.Extensions.Wcf (3.0.0.5) from nuget but the NinjectWcfConfiguration type used in the SelfHost example is not in that package?
0
votes
1answer
83 views

Ninject: Use Configuration also in library

I'm starting with Ninject and I use it in a MVC 4 scenario and configured my bindings in "NinjectWebCommon". And everything works fine. Now I want in an library somehow get the kernel with the ...
0
votes
2answers
98 views

EF codefirst, how to call SaveChanges() only once per application loaded

I will try to explain what I want, but it will be hard. ) So I have entity: public class User { [Key] public Int32 Id { get; set; } public String Name { get; set; } public ...
1
vote
2answers
43 views

Setting up ninject comparison rules I+“Somevalue” = Somevalue

Hello my question might be a little bit stupid, but I will be very gratitude if someone will help me with it. So my question is: how to set automatic class to interface comparison with rule ...
0
votes
0answers
38 views

ViewModelHelper and ninject

I'm proberbly doing this all wrong so any help would be appreciated. I trying to add the data from 3 classes and join the data together into 1 model to display on webpage. I have tried with the code ...
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 ...
1
vote
0answers
65 views

Ninject Generating a TypeLoadException in MVC3

I am trying to execute the following test method using Ninject and MVC: [TestMethod] public void CreateEntityTest() { using (IKernel kernel = new StandardKernel()) { ...
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 ...
0
votes
1answer
66 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
452 views

No matching bindings are available, and the type is not self-bindable in Ninject

I am using Ninjec, Ninject.Web.MVC and Ninject.Web.Common When I start my mvc application I get this binding error: What do I wrong in my binding? Error activating DbConnection No matching ...
1
vote
1answer
142 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
91 views

Autofac InstancePerHttpRequest using Ninject

What is the Ninject equivalent of the following autofac code: builder.RegisterType<WebWorkContext>().As<IWorkContext>().InstancePerHttpRequest(); Basically I want to share some settings ...
1
vote
1answer
137 views

Generics and Property binding in Ninject

I'm looking for a good way to incorporate settings inside my webapp (asp mvc). I've came across a really nice implementation in NopCommerce. NopCommerce stores the values in a database table, with a ...
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
0answers
153 views

MutiTenancy and modularity in mvc4 with ninject

I have a multi tenant application mvc4 with modules. What I want to do is to hide complexity from modules. I want to not having some references like ninject in modules and manage dependency injection ...
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 ...
3
votes
2answers
174 views

Error loading Ninject component ICache

I am using ninject in an asp.net web api project and have started receiving this intermittent ninject error: "Error loading Ninject component ICache No such component has been registered in the ...
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 ...
0
votes
1answer
60 views

Get the parent object in Ninject

I have classes with bidirectional connection to one another. When Ninject create the class Parent, it also creates a Child. The problem is that the Child must know who its parent is. But I can not ...
0
votes
0answers
107 views

Ninject & MOQ for ASP.NET Integration Testing

I have a project where I implemented many unit-tests using MOQ which works as expected. Now I have running some selenium integration tests to check the whole application. The Integration test runs ...
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 ...
2
votes
1answer
274 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 ...
1
vote
1answer
143 views

Ninject Factory Extension Memory Leak?

I am using the following interface as a ToFactory() binding: public interface ISamplerFactory { ISampler Create(Action<EventHandler<ValueChangedEventArgs>> register, ...
3
votes
1answer
296 views

Ninject Dependency Injection for SignalR

In my NinjectWebCommon.cs file, under CreateKernel method I am applying the injection like this private static IKernel CreateKernel() { var kernel = new StandardKernel(); ...
2
votes
1answer
125 views

Reading Ninject WithConstructorArguments from Web.config

I have the following RegisterServices function: private static void RegisterServices(IKernel kernel) { kernel.Bind<ISearchRepository>().To<SearchRepository>(); ...
1
vote
4answers
62 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
vote
1answer
90 views

Ninject NamedScope Conditional Bindings

I am trying to make a conditional binding on whether or not I am inside a named scope. My interface ILogger - using the default behaviour of the Ninject Logger extension we inject type-specific ...
0
votes
0answers
45 views

ASP.NET AutoEventWireup and Ninject Injection

I have adeed a comment on GitHub (Issue 10) for this but didn't get any response, so I'm cross-posting it here : I have a question and maybe a potential bug to report, in case developer turns on the ...
0
votes
0answers
99 views

Injecting dependencies using ninject in a wcf service

I'm using ninject (extensions) to inject dependencies in a wcf service. What scope must I use for injecting IDataContext dependency since I get "The context cannot be used while the model is being ...
0
votes
1answer
80 views

How do you use MVC's IDependencyResolver for things other than Controllers?

I created a NinjectDependencyResolver class that is working great for injecting dependencies into controllers. I understand you can chain dependencies, but my problem is that I'm instantiating a class ...
0
votes
0answers
155 views

Ninject, MVC 4 and log4net

I have set up a simple mvc 4 site using Ninject for DI. I wanted to add some logging so I set up Ninject.Extensions.Logging but with no luck. The logger never gets injected. Any suggestions?
3
votes
1answer
231 views

How do i mock a Interface with Moq or NInject Mocking Kernel

I just waded through questions and blogs on the subject of mocking and Dependency Injection. Come to a conclusion i just need to mock the interface that is consumed by client. I am looking forward to ...
0
votes
1answer
51 views

Entries delete from knockout ui, but not from db

I use WebApi in MVC 4 with EF, Ninject. In client i use knockout.js end it's delete my entries from UI, but it's still in DB. Add, update action works fine. Client code: self.removeUser = function ...
1
vote
2answers
55 views

Does Ninject deactivate transitive dependencies when the underlying one deactivated?

I got the IUnitOfWork interface (with its implementation which I wont show you): public interface IUnitOfWork : IDisposable { ... } Note the IDisposable inheritance. Also, I got the service ...
0
votes
1answer
140 views

Exception when adding a View to MVC3

I'm using Visual Studio 2012 Express for Web. When I try to add a view, I get an error saying: The templates had the following 1 error(s)** C:\Program Files\Microsoft Visual Studio ...
1
vote
2answers
115 views

Pass constructor with Ninject

I have one base generic repository and many class repository that inherits from the base repository. I need too pass string value to the generic repository. Here is my Generic Repository public ...
0
votes
0answers
39 views

Hijacking Ninject's Cache - is it a good idea?

I have a problem to tackle, see Use provided instance for further injections. One of ideas I came around by reading the Ninject's sources is to try and hijack Cache, putting my required instance ...
0
votes
0answers
60 views

Use provided instance for further injections

I'm developing an app for WP8, and Ninject is my DI framework of choice. One of the uses I have for it is to provide View Models to Views via so called ViewModelLocator pattern (not sure if this name ...
2
votes
1answer
139 views

Disposable per-request lifetime with ServiceStack and NinjectContainerAdapter

When using Ninject with ServiceStack, how would I specify that an object's lifetime is to be per-request, calling any IDisposable.Dispose method if necessary? Per the docs, the default way of doing ...

1 2 3 4 5 38