如何让 Ninject 与 ASP.NET WebForms 应用程序一起工作
我有一个非常初级的问题。
我正在尝试在 ASP.NET WebForms 应用程序中使用 Ninject,但我不知道如何操作。我大致知道如何在 MVC 3 中执行此操作,如所述 此处。但是,当我尝试在 WebForms 应用程序中执行相同的操作时,我陷入了困境。
例如,在 WebForms 应用程序中,我在哪里设置类似于下面的绑定?
private static void RegisterServices(IKernel kernel)
{
kernel.Bind<IRepository>().To<MyRepositoryImpl>();
kernel.Bind<IWebData>().To<MyWebDAtaImpl>();
}
这是我遇到的此类问题的一个例子,我希望 SO 社区能够提供帮助。我有很多这样的问题,但为了尝试从某个地方开始,我暂时先不提这个问题。
I have a really beginner's level question.
I am trying to get going with Ninject in an ASP.NET WebForms application, but I don't know how. I know how to do this, roughly, in MVC 3, as described here. But, I'm stuck when trying to do the same thing in a WebForms app.
For example, in a WebForms app, where do I setup binding similar to below?
private static void RegisterServices(IKernel kernel)
{
kernel.Bind<IRepository>().To<MyRepositoryImpl>();
kernel.Bind<IWebData>().To<MyWebDAtaImpl>();
}
This is an example of the kinds of questions I have, and am hoping the SO community can help with. I have lots of such questions, but in an attempt to just start somewhere, I'll leave off with that one question for now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您指的是 WebForms 吗?
您将需要在 Global.asax 的 Application_OnStart 事件中进行容器注册。
Do you mean WebForms?
You will want to do container registration in the global.asax, in the Application_OnStart event.