26

我正在尝试将新的 ASP.Net MVC 4 Web API 项目模板与 Ninject 一起使用,但遇到了以下错误:

来自程序集“Ninject.Web.WebApi,版本=3.0.0.0,文化=中性,PublicKeyToken=c7192dc5380945e7”的“Ninject.Web.WebApi.Filter.DefaultFilterProvider”类型中的方法“GetFilters”没有实现。

我正在使用 ASP.Net MVC 4 -> Web API 模板在 Visual Studio 2010 中创建一个全新的项目,并且我正在使用最新的 Ninject NuGet 包:

  • 忍者 3.0.1.10
  • Ninject.Web.Common 3.0.0.7
  • Ninject.Web.WebApi 3.0.0.2

我已经尝试过这个问题中提出的解决方案,但是我没有任何运气 - 如果我删除对 Ninject.Web.WebApi 的引用,那么 MVC 永远不会使用 Ninject。我还注意到他们提到了 Ninject.MVC3,但是我使用的是新的Ninject.WebApi插件。

我正在使用在 NuGet 安装期间创建的NinjectWebCommon.cs中的默认绑定代码,并尝试在RegisterServices()中注册一项简单的服务

[assembly: WebActivator.PreApplicationStartMethod(typeof(mkts.web.App_Start.NinjectWebCommon), "Start")]
[assembly: WebActivator.ApplicationShutdownMethodAttribute(typeof(mkts.web.App_Start.NinjectWebCommon), "Stop")]

namespace mkts.web.App_Start
{
    using System;
    using System.Web;

    using Microsoft.Web.Infrastructure.DynamicModuleHelper;

    using Ninject;
    using Ninject.Web.Common;
    using mkts.service;

    public static class NinjectWebCommon 
    {
        private static readonly Bootstrapper bootstrapper = new Bootstrapper();

        /// <summary>
        /// Starts the application
        /// </summary>
        public static void Start() 
        {
            DynamicModuleUtility.RegisterModule(typeof(OnePerRequestHttpModule));
            DynamicModuleUtility.RegisterModule(typeof(NinjectHttpModule));
            bootstrapper.Initialize(CreateKernel);
        }

        /// <summary>
        /// Stops the application.
        /// </summary>
        public static void Stop()
        {
            bootstrapper.ShutDown();
        }

        /// <summary>
        /// Creates the kernel that will manage your application.
        /// </summary>
        /// <returns>The created kernel.</returns>
        private static IKernel CreateKernel()
        {
            var kernel = new StandardKernel();
            kernel.Bind<Func<IKernel>>().ToMethod(ctx => () => new Bootstrapper().Kernel);
            kernel.Bind<IHttpModule>().To<HttpApplicationInitializationHttpModule>();

            RegisterServices(kernel);
            return kernel;
        }

        /// <summary>
        /// Load your modules or register your services here!
        /// </summary>
        /// <param name="kernel">The kernel.</param>
        private static void RegisterServices(IKernel kernel)
        {
            //Test binding
            kernel.Bind<IStudentService>().To<StudentService>();
        }        
    }
}

我的控制器:

namespace mkts.web.Controllers
{
    public class HomeController : Controller
    {
        private readonly IStudentService studentService;

        public HomeController(IStudentService studentService)
        {
            this.studentService = studentService;
        }


        public ActionResult Index()
        {
            return View();
        }
    }
}

非常感谢您对此的任何帮助。

4

1 回答 1

62

Ninject.WebApi 是针对 Beta 编写的,现在已弃用。

删除它,安装 Ninject.MVC3。

现在你需要一个自制的 IDependencyResolver 和 IDependencyScope。我在这里发布了一个演练 - http://www.strathweb.com/2012/05/using-ninject-with-the-latest-asp-net-web-api-source/

于 2012-06-26T17:13:09.600 回答