如何让 Ninject 与 ASP.NET WebForms 应用程序一起工作

发布于 2024-11-27 21:57:57 字数 609 浏览 0 评论 0原文

我有一个非常初级的问题。

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吖咩 2024-12-04 21:57:57

您指的是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文