我对其他 IoC 容器持开放态度,例如 NInject 和 StructureMap,如果它们比这更干净的话。我听说 StructureMap 刚刚引入了可以简化这一点的“容器”,也许?
正如标题所说,有没有更好的方法?这看起来像很多代码,只是为了注册一个需要工厂来创建它的对象。
// The process to register an object, with a factory method
var cfg = new MutableConfiguration(p.Name);
cfg.Attributes["factoryId"] = p.TypeFactory.Name;
cfg.Attributes["factoryCreate"] = "Create";
var model = _container.Kernel.ComponentModelBuilder.BuildModel(
p.Name, p.TypeService, p.Type, null);
model.LifestyleType = LifestyleType.Pooled;
model.Configuration = cfg;
_container.Kernel.AddCustomComponent(model);
Versas 添加组件的“非工厂”方式:
// registering a component with no factory method
_container.AddComponentLifeStyle(
p.Name, p.TypeService, p.Type, LifestyleType.Singleton);
第一个似乎过于复杂。
提前致谢!