Help with Ninject in mvc3!
问题 Heres my problem. My app has several projects. WEB (Controllers and views) Services Data (edmx and Repositories) Entities (POCO) Tests So in my Web project I have the ninject configuration [assembly: WebActivator.PreApplicationStartMethod(typeof(PublicPanama.AppStart_NinjectMVC3), "Start")] namespace Web{ public static class AppStart_NinjectMVC3 { public static void RegisterServices(IKernel kernel) { //kernel.Bind<IThingRepository>().To<SqlThingRepository>(); kernel.Bind<IContributorService>(