I'm in the process of integrating with the ASP.NET Feature Management abstraction using a FeatureFilter. One of its constraints is that it registers as a singleton.
This means that in order to access data from my own request-scoped services, I have to be able to resolve them in a fashion similar to how HttpContext can be resolved using HttpContextAccessor.
Are there any known resources or techniques I can follow to set up my own request-scoped services that I want to call in my static-scoped FeatureFilter implementation?