我对其他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);
第一个似乎过于复杂。
提前致谢!
答案 0 :(得分:3)
我不确定你要注册的是什么(第一个代码块中的p
是什么?)但是UsingFactoryMethod
,工厂注册是轻而易举的。示例代码:
container.AddFacility<FactorySupportFacility>()
.Register(
Component.For<IMyService>()
.UsingFactoryMethod(() => MyLegacyServiceFactory.CreateMyService())
.LifeStyle.Pooled
);