Stashbox by Peter Csajtai

<PackageReference Include="Stashbox" Version="5.4.2-preview-759" />

 PerRequestLifetime

Represents a per-request lifetime.
using Stashbox.Registration.ServiceRegistrations; using Stashbox.Resolution; using Stashbox.Utils; using System; using System.Linq.Expressions; using System.Runtime.CompilerServices; namespace Stashbox.Lifetime { public class PerRequestLifetime : FactoryLifetimeDescriptor { private protected override bool StoreResultInLocalVariable => true; [System.Runtime.CompilerServices.NullableContext(1)] protected override Expression ApplyLifetime(Func<IResolutionScope, IRequestContext, object> factory, ServiceRegistration serviceRegistration, ResolutionContext resolutionContext, Type resolveType) { resolutionContext.RequestConfiguration.RequiresRequestContext = true; return resolutionContext.RequestContextParameter.ConvertTo(Constants.InternalRequestContextType).CallMethod(Constants.GetOrAddInstanceMethod, serviceRegistration.RegistrationId.AsConstant(), factory.AsConstant(), resolutionContext.CurrentScopeParameter).ConvertTo(resolveType); } } }