我在Spring,Autofac,StructureMap中实现子容器。我在Spring.NET和Autofac中取得了成功,但我无法在StructureMap中构建子容器。 以下代码应该给我一个子容器。
StructureMap.Container container = new Container();
var childContainer = container.GetNestedContainer();
但它的GetNestedContainer()
不会从父容器中提取任何临时对象。有没有人知道如何为StructureMap容器构建子容器?