Fung Kao
Fung Kao
.NET 周刊 https://github.com/DotNETWeekly-io/DotNetWeekly
> No. Flighting doesn't mean live configuration outside Microsoft. So please do not mention 'flight' as live configuration here. I don't think so. App Store has an application called **TestFlight**
> Just searched on the web. The word `flight` has no meaning or any relationship between `live configuration`. > >  Looks interesting https://aidanfinn.com/?p=17862
https://github.com/gaufung/Backend-Interview I have tried to answer part of them.
Another workaround is to implement `IMiddleware` interface. ```csharp public class MiddlewareUsingKeyedSomeClassConstructor(R[FromKeyedServices("test")] SomeClass someClass) : IMiddleware { public async Task InvokeAsync(HttpContext context. RequestDelegate next) { await next(context); } } builder.Services.AddTransient(); app.UseMiddleware();...