标签: ninject asp.net-web-api
我有一个服务,HttpControllerContext用于构造函数注入。这有什么约束力?绑定在WebActivator下的NinjectWebCommon文件中设置。
HttpControllerContext
通过绑定,我的意思是:
kernel.Bind<IUserService>().To<UserService>(); kernel.Bind<HttpControllerContext>().To</* ??? */ >(); //Whats the binding?