我们使用 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);
}
}
}