Fung Kao

Results 5 comments of 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`. > > ![image](https://user-images.githubusercontent.com/19531547/113551264-f3509400-9626-11eb-9376-d148b5596877.png) 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();...