I have just downloaded the latest version of Ninject and replaced our existing Ninject.Core and Ninject.Condidtions assemblies with the single Ninject.dll (CF builds if that makes a difference). All h
Consider the following: public Something(IInterface concreteObjectOne, IInterface concreteObjectTwo) {
Recently I\'ve switched to Ninject 2.0 release and started getting the following error: Error occured: Error activating SomeController
I\'m using Ninject 1.0 and would like to be able to inject lazy initialisation delegates into constructors. So, given the generic delegate definition:
I am trying to use Ninject 2.0 with Asp .Net 3.5 web application. Following are the DLLS and it\'s versions I am using.
I have a class that has dependencies that I\'ve wired up with Ninject. public interface IFoo {} public class MyObject {
I have a method attribute which expects several properties to be injected by Ninject 2, but userSession and jobRepository are coming up as null:
I have defined one interface and one class: public interface IRepository<T> { } public class RoleRepository:IRepository<Domain_RoleInfo>
I decided to start using Ninject and face an issue. Say I have the following scenario. I have an IService interface and 2 classes implementing this interface. And also I have a class, which has a cons
I want to map DbConnection to an un-opened SqlConnection using Ninject. This is what I\'ve done: string constr = @\"Server=.\\SQLEXPRESS; Trusted_Connection=True; Database=TestDB\";