1

我们使用 Ninject 进行依赖注入。我们正在使用自由格式解释的 DDD 设计代码,其中域对象是 IThing。

在以下代码中,如何使用 IThing 实例获取 IThingControl?

interface IThing {}
class Thing : IThing {}

interface IThingControl<T> where T:IThing {}
class ThingControl<Thing> {}

class Module : NinjectModule {
    public override void Load() {
        Bind<IThingControl<Thing>>().To<ThingControl>();
    }
}

class SomewhereInCode {
    void AddControls() {
        List<IThing> things = new List<IThing> {
            new Thing()
        };
        foreach (IThing thing in things) {
            IThingControl<IThing> control = _kernel.Get(); // <----- eh?
            this.Controls.Add(control);
        }
    }
}
4

2 回答 2

3

MakeGenericType您可以使用( here )获取实例,但不能将其转换为IThingControl<IThing>

interface IThing { }
class Thing1 : IThing { }
class Thing2 : IThing { }
interface IThingControl<T> where T : IThing { }
class ThingControl<Thing> { }

class Module : NinjectModule {
    public override void Load()
    {
        Bind(typeof(IThingControl<>)).To(typeof(ThingControl<>));
    }
}

[TestFixture]
public class SomewhereInCode
{
    [Test]
    public void AddControls()
    {
        IKernel kernel = new StandardKernel(new Module());
        List<IThing> things = new List<IThing> { new Thing1(), new Thing2() };
        Type baseType = typeof(IThingControl<>);

        foreach (IThing thing in things)
        {
            Type type = baseType.MakeGenericType(thing.GetType());
            dynamic control = kernel.Get(type);
            Assert.That(
                control is IThingControl<IThing>,
                Is.False);
        }
    }
}
于 2013-11-04T11:59:41.357 回答
0

如果您的目标是从接口检索通用控制器到其域对象,我会重新审视您的设计。

Ninject 不能很好地使用泛型域类型作为接口。这是由于泛型类型的不变性:Ninject - 管理泛型类型的不变性?

于 2013-11-05T04:53:06.757 回答