dadhi / DryIoc

DryIoc is fast, small, full-featured IoC Container for .NET
MIT License
1.03k stars 122 forks source link

Optimize injection of IResolverContext #512

Closed dadhi closed 2 years ago

dadhi commented 2 years ago

Currently, it is registered as a normal Wrapper, so it goes through general GetExpressionOrDefault pipeline including the cache probing, etc. We may use a more specialized GetExpressionOrDefault similar to InstanceFactory, and fallback to the general one for non-default setups.