GetServices<TService>() allocates a new instance of all transients when called #3
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Calling GetServices passing an interface as TService will net you a list of TService implementations, in case of singletons this is no big deal, but when we get to transient services this will return a fresh instance of all of them.
Not the highest priority right now, but good to keep in mind.