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