3

我最近将 ASP.NET MVC 3 应用程序更新为 Ninject 2.2。

以前我在我的主应用程序中有以下实现绑定接口:

Bind(typeof(IMyInterface<>)).To(typeof(MyImplementation<>)).InRequestScope();

此外,我的主应用程序正在加载的不同程序集中有以下内容:

var arg = new ConstructorArgument("info", "something");
Bind<IMyInterface<MyClass>>().To<MyImplementation<BlogComment>>().WithParameter(arg);

这以前工作得很好,并且正在识别更具体的实现(带有参数的实现)。但是,当我升级到 Ninject 2.2 时,我收到以下错误:

Error activating IMyInterface{MyClass}
More than one matching bindings are available.
Activation path:
 2) Injection of dependency IMyInterface{MyClass} into parameter myParam of constructor of type SomeOtherClass
 1) Request for IMyInterface

Suggestions:
 1) Ensure that you have defined a binding for IMyInterface{MyClass} only once.

从 2.0 到 2.2 进行了哪些更改导致此问题,是否有解决方法?

4

1 回答 1

5

Ninject 2.2 确保在解析实例时只存在一个匹配的绑定。2.0 返回了第一个匹配绑定的实例,忽略了其他绑定。但是,如果只请求一个绑定,则具有多个绑定反映了错误的配置,并且可能导致难以检测到意外行为。

但我看到应该有可能用更具体的绑定来否决开放的通用绑定。我肯定会调查它,它会被添加到错误修复版本或下一个主要版本中。

于 2011-02-17T11:52:36.187 回答