0

我有一个绑定到类的接口。一切都像例外一样工作。我想用构造函数注入来创建类,而不是到处传递我的内核。我想为这些提议建立一个单身工厂。我如何在不使用 ninject.extensions.factory 库的情况下创建一个。

4

2 回答 2

2

如果您想创建工厂但不使用工厂扩展(不知道为什么,我认为这正是您需要的),您可以执行以下操作:

public class FooFactory : IFooFactory
{
    // allows us to Get things from the kernel, but not add new bindings etc.
    private readonly IResolutionRoot resolutionRoot;

    public FooFactory(IResolutionRoot resolutionRoot)
    {
        this.resolutionRoot = resolutionRoot;
    }

    public IFoo CreateFoo()
    {
        return this.resolutionRoot.Get<IFoo>();
    }

    // or if you want to specify a value at runtime...

    public IFoo CreateFoo(string myArg)
    {
        return this.resolutionRoot.Get<IFoo>(new ConstructorArgument("myArg", myArg));
    }
}

public class Foo : IFoo { ... }

public class NeedsFooAtRuntime
{
    public NeedsFooAtRuntime(IFooFactory factory)
    {
        this.foo = factory.CreateFoo("test");
    }
}

Bind<IFooFactory>().To<FooFactory>();
Bind<IFoo>().To<Foo>();

不过,Factory Extension 只是在运行时为您完成所有这些工作。您只需要定义工厂接口,扩展程序会动态创建实现。

于 2013-03-16T20:12:09.253 回答
0

试试这个代码:

class NinjectKernelSingleton
{
    private static YourKernel _kernel;

    public static YourKernel Kernel
    {
        get { return _kernel ?? (_kernel = new YourKernel()); }
    }

}

public class YourKernel
{
    private IKernel _kernel;
    public YourKernel()
    {
        _kernel = InitKernel();
    }

    private IKernel InitKernel()
    {
        //Ninject init logic goes here
    }

    public T Resolve<T>() 
    {
        return _kernel.Get<T>();
    }
}
于 2013-03-16T18:44:04.697 回答