You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assume a root container and a child container where the child has an open generic interface->type mapping registered.
Resolving the interface from the child container works.
This is expected, since it has the mapping.
Resolving the interface from the parent container throws a ResolutionFailedException.
This is expected, since it does not have the mapping.
Resolving the interface from the child container after having attempted to resolve it from the parent container will cause the child container to also throw a ResolutionFailedException because the interface is not mapped.
This is unexpected (and wrong: it clearly is mapped).