mvc4 rcアップデートをインストールしたばかりで、運が悪かったAPIアプリケーションを構築しようとしています。
ninjectを使用していますが、コントローラーをロードできません。エラーが発生し続ける
タイプ'Api.Controllers.ConsumerController'にはデフォルトのコンストラクターがありません
私はMVCに非常に慣れておらず、インジェクションを使用しているので、ご容赦ください。
nugetを介して作成されたデフォルトのバインディングに特別なことは何もしていません
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)
{
kernel.Bind<IConsumerRepository>().To<ConsumerRepository>();
}
}
私のコントローラーは次のようになります
private readonly IConsumerRepository _repository;
public ConsumerController(IConsumerRepository repository)
{
_repository = repository;
}
[HttpGet]
public IQueryable<Consumer> Get(Guid id)
{
return _repository.Get(id).AsQueryable();
}
APIコントローラーをninjectで動作させるには何をする必要がありますか?
これが単純なものならごめんなさい
私はあなたの提案マイケルを試しましたが、webcommon.csをこれに変更した後
private static IKernel CreateKernel()
{
var kernel = new StandardKernel();
kernel.Bind<Func<IKernel>>().ToMethod(ctx => () => new Bootstrapper().Kernel);
kernel.Bind<IHttpModule>().To<HttpApplicationInitializationHttpModule>();
RegisterServices(kernel);
GlobalConfiguration.Configuration.DependencyResolver = new NinjectDependencyResolver(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)
{
kernel.Bind<IConsumerRepository>().To<ConsumerRepository>();
}
エラーが発生する
var kernel = new StandardKernel();
と呼ばれる
アセンブリ'Ninject.Web.WebApi、Version = 3.0.0.0、Culture = neutral、PublicKeyToken=c7192dc5380945e7'のタイプ'Ninject.Web.WebApi.Filter.DefaultFilterProvider'のメソッド'GetFilters'には実装がありません。
私は何が欠けていますか?