Ninjectで新しいASP.NetMVC 4 Web APIプロジェクトテンプレートを使用しようとしていますが、次のエラーで壁にぶつかりました。
アセンブリ 'Ninject.Web.WebApi、Version = 3.0.0.0、Culture = neutral、PublicKeyToken = c7192dc5380945e7'のタイプ 'Ninject.Web.WebApi.Filter.DefaultFilterProvider'のメソッド 'GetFilters'には実装がありません。
ASP.Net MVC 4-> WebAPIテンプレートを使用してVisualStudio 2010で新しいプロジェクトを作成し、最新のNinjectNuGetパッケージを使用しています。
この質問 に示されている解決策を試しましたが、運がありませんでした-Ninject.Web.WebApiへの参照を削除すると、MVCはNinjectを使用しません。また、彼らがNinject.MVCと言及していることにも気づきましたが、私は新しいNinject.WebApiプラグインを使用しています。
NuGetのインストール中に作成されたNinjectWebCommon.csのデフォルトのバインディングコードを使用しており、RegisterServices()に1つの単純なサービスを登録しようとしています。
[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();
}
}
}
これについて助けてくれてありがとう。
Ninject.WebApiはベータ版に対して作成されたものであり、現在は非推奨です。
それを削除し、Ninject.MVC3をインストールします。
次に、自家製のIDependencyResolverとIDependencyScopeが必要になります。ここにウォークスルーを投稿しました- http://www.strathweb.com/2012/05/using-ninject-with-the-latest-asp-net-web-api-source/