1

我对其他 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);

第一个似乎过于复杂。

提前致谢!

4

1 回答 1

3

我不确定您要注册什么(p第一个代码块中有什么?),但是使用 UsingFactoryMethod,工厂注册轻而易举。示例代码:

container.AddFacility<FactorySupportFacility>()
   .Register(
      Component.For<IMyService>()
         .UsingFactoryMethod(() => MyLegacyServiceFactory.CreateMyService())
         .LifeStyle.Pooled
   );
于 2010-03-03T01:33:41.857 回答