MVC3 与 Ninject 错误:MVCApplication 未实现继承的抽象成员

发布于 2024-12-20 20:19:35 字数 511 浏览 2 评论 0原文

这是我第一次尝试使用 Ninject,所以我可能做错了。以下是我到目前为止所做的事情以及收到的错误:

  1. 创建了一个名为 TestApplication 的新 MVC3 应用程序。
  2. 下载(通过 NuGet)Ninject v2.2.1.4 和 Ninject.MVC3 v2.2.2.0
  3. 将 Global.asax 文件第 14 行的 System.Web.HttpApplication 更改为 NinjectHttpApplication。
  4. 构建了应用程序。

这导致了以下错误:

错误 1 ​​'TestApplication.MvcApplication' 未实现继承的抽象成员 'Ninject.Web.Mvc.NinjectHttpApplication.CreateKernel()'

我没有更改 App_Start>NinjectMVC3.cs代码。

我需要做什么才能清除错误?提前感谢您的帮助。

This is my first time trying to use Ninject so I am probably doing this wrong. Here is what I have done so far and the error I am getting:

  1. Created a new MVC3 application called TestApplication.
  2. Downloaded (via NuGet) Ninject v2.2.1.4 and Ninject.MVC3 v2.2.2.0
  3. Changed System.Web.HttpApplication to NinjectHttpApplication on line 14 of the Global.asax file.
  4. Built the application.

This resulted in the following error:

Error 1 'TestApplication.MvcApplication' does not implement inherited abstract member 'Ninject.Web.Mvc.NinjectHttpApplication.CreateKernel()'

I have not altered the App_Start>NinjectMVC3.cs code.

What do I need to do to clear the error? Thanks for your help in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凉城凉梦凉人心 2024-12-27 20:19:35

您不需要从 NinjectHttpApplication 继承您的应用程序。 Ninject.MVC3 提供了所需的所有连接。您只需将绑定添加到 App_Start/NinjectMVC3.cs 文件中。

You don't need to inherit your Application from NinjectHttpApplication. Ninject.MVC3 provides all the hookup required. You just add your bindings to the App_Start/NinjectMVC3.cs file.

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