我一直试图让(Ninject 3+)的 Ninject.Extensions.Conventions 工作,但没有运气。我把它归结为一个找到的示例控制台应用程序,我什至无法做到这一点。这是我所拥有的:
class Program
{
static void Main(string[] args)
{
var kernel = new StandardKernel();
kernel.Bind(x => x
.FromThisAssembly()
.SelectAllClasses()
.BindAllInterfaces());
var output = kernel.Get<IConsoleOutput>();
output.HelloWorld();
var service = kernel.Get<Service>();
service.OutputToConsole();
Console.ReadLine();
}
public interface IConsoleOutput
{
void HelloWorld();
}
public class ConsoleOutput : IConsoleOutput
{
public void HelloWorld()
{
Console.WriteLine("Hello world!");
}
}
public class Service
{
private readonly IConsoleOutput _output;
public Service(IConsoleOutput output)
{
_output = output;
}
public void OutputToConsole()
{
_output.HelloWorld();
}
}
}
我还尝试过 FromAssembliesMatching、SelectAllTypes、BindDefaultInterfaces的各种组合等的各种组合。一切都会引发 Error activation 。没有匹配的绑定可用,并且该类型不可自绑定。
只是为了理智,如果我手动绑定:
kernel.Bind<IConsoleOutput>().To<ConsoleOutput>();
一切正常。很明显,我只是错过了一些东西。