使用BindDefaultInterface

时间:2016-11-14 17:54:18

标签: c# asp.net-mvc dependency-injection ninject

我正在进行单元测试/依赖注入/模拟。使用Ninject,我可以在NinjectWebCommon.cs

中将接口绑定到实现,如下所示
kernel.Bind<IRecipeRepository>().To<RecipeRepository>();

这很好用。但是,我不希望将每个接口单独绑定到具体实现。为了解决这个问题,我使用了接口的标准命名约定(IFoo是类Foo的接口)并尝试使用以下命令使用Ninject.Extensions.Conventions为所有接口提供默认绑定。注意:此代码位于CreateKernel()中的NinjectWebCommon.cs方法:

kernel.Bind(c => c
        .FromThisAssembly()
        .IncludingNonePublicTypes()
        .SelectAllClasses()
        .BindDefaultInterface()
        .Configure(y => y.InRequestScope()));

但是,当我这样做时,我收到以下错误:

Error activating IRecipeRepository
No matching bindings are available, and the type is not self-bindable.
Activation path:
 2) Injection of dependency IRecipeRepository into parameter recipeRepository of constructor of type RecipesController
 1) Request for RecipesController

感谢所有帮助。

编辑:我的控制器的构造函数如下所示:

    private IRecipeRepository recipeRepository;
    private ISizeRepository sizeRepository;

    [Inject]
    public RecipesController(IRecipeRepository recipeRepository, ISizeRepository sizeRepository)
    {
      this.recipeRepository = recipeRepository;
      this.sizeRepository = sizeRepository;
    }

1 个答案:

答案 0 :(得分:1)

您无法将IRecipeRepository绑定到RecipeRepository的原因是它们与控制器位于不同的程序集中。要解决您的问题,您必须在NinjectWebCommon.cs中添加另一个绑定。只有当接口和具体类在同一个程序集中时,这才有效:

kernel.Bind(c => c
                .FromAssemblyContaining<IRecipeRepository>()
                .IncludingNonePublicTypes()
                .SelectAllClasses()
                .BindDefaultInterface()
                .Configure(y => y.InRequestScope()));

如果具体的实现和接口在不同的项目中,您应该将.FromAssemblyContaining<IRecipeRepository>()替换为.FromAssemblyContaining<RecipeRepository>(),并且应该像魅力一样。