我正在研究MVVM应用程序。它有一些整个应用程序需要的对象(单个实例),它有一些只有某些窗口/控件需要的对象(每个控件一个实例)。
我想将StructureMap容器配置为包含所有应用程序实例,就像正常一样。当我打开一个窗口/控件时,我想创建一个容器的克隆,并将该控件所需的对象添加到克隆的配置中。克隆应该扩展原始容器,并且应该包含相同的配置和实例。
这可能与StructureMap有关吗? (我正在看嵌套容器,但我不确定这是我想要的。)
更多细节......
这是一个显示行为的测试。首先是标准的东西:
[Test]
public void Mupp()
{
var parent = new Container(x =>
{
x.For<IMyServiceAgent>().Singleton().Use<MyServiceAgent>();
});
var parentServiceAgent = parent.GetInstance<IMyServiceAgent>();
然后我创建了克隆。它与父级具有相同的实例。 (这是我正在寻找的方法CreateCloneOf()
的实现。)
IContainer scoped1 = CreateCloneOf(parent);
scoped1.GetInstance<IMyServiceAgent>().ShouldBeTheSameAs(parentServiceAgent);
我想用我的本地对象扩展配置。
scoped1.Configure(x =>
{
x.For<IMyPresenter>().Singleton().Use<MyPresenter>();
});
var scopedPresenter1 = scoped1.GetInstance<IMyPresenter>();
scoped1.GetInstance<IMyPresenter>().ShouldBeTheSameAs(scopedPresenter1);
创建容器的第二个克隆不会与第一个克隆共享实例(或配置)。
IContainer scoped2 = CreateCloneOf(parent);
scoped2.Configure(x =>
{
x.For<IMyPresenter>().Singleton().Use<MyPresenter>();
});
scoped2.GetInstance<IMyPresenter>().ShouldNotBeTheSameAs(scopedPresenter1);
作用域conatiner中配置的内容不应位于父容器
中 parent.GetInstance<IMyPresenter>(); // Should throw
应该可以从作用域容器创建作用域容器。
IContainer moreScoped = CreateCloneOf(scoped1);
moreScoped.GetInstance<IMyPresenter>().ShouldBeTheSameAs(scopedPresenter1);
}
答案 0 :(得分:2)
根据您的问题判断,您所寻找的是嵌套容器。
您可以通过创建嵌套容器来实现目标(嵌套容器是适用于短期操作的容器的副本,嵌套容器的任何更改都不会反映在克隆的容器中 - {{3} })。
嵌套容器之后,您可以为要使用嵌套容器的模块所需的新操作添加StructureMap注册表。
像这样:
<强>设定:强>
public void ApplicationBootstrap()
{
IContainer container = StructureMapCoreSetup.Initialise();
container.Configure(c =>
{
c.IncludeRegistry<DefaultRegistry>();
});
}
<强>用法:强>
public class ApplicationModule
{
public ApplicationModule(IContainer container)
{
childContainer = container.GetNestedContainer();
childContainer.Configure(x =>
{
x.AddRegistry<ModuleSpecificRegistry>();
});
}
}
对嵌套容器的任何更改都不会反映在任何其他容器中的任何容器中(除非您创建了嵌套容器的嵌套实例),并且一旦完成容器就可以将其丢弃。
希望这是你正在寻找的,或者它至少指出你正确的方向!