Warstone
Warstone
I think same, but it's not expected behavior for me. Nested container must block such things and I've expected to see 5 in result
If you want to make it works as I expect, than in subContainer you could register factory like this: ``` c.ExportFactory(scope => new B((A)scope.GetExtraData("a"))); ``` But it still wired that...
``` public class B { public B(IA a) { A = a; } public IA A; } public interface IA { public int Value {get; set; } } public class...