我最近将 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 进行了哪些更改导致此问题,是否有解决方法?