Stashbox by Peter Csajtai

<PackageReference Include="Stashbox" Version="3.6.2" />

 IResolver

public interface IResolver
Represents a dependency resolver.
using Stashbox.Registration; using System.Collections.Generic; using System.Linq.Expressions; namespace Stashbox.Resolution { public interface IResolutionStrategy { Expression BuildExpressionForType(ResolutionContext resolutionContext, TypeInformation typeInformation); IEnumerable<Expression> BuildExpressionsForEnumerableRequest(ResolutionContext resolutionContext, TypeInformation typeInformation); Expression BuildExpressionForRegistration(ServiceRegistration serviceRegistration, ResolutionContext resolutionContext, TypeInformation typeInformation); } }