How to use ILogger.BeginScope in Blazor Server for the entire activity?
In a standard request/response app with AspNet.Core, it was easy to add informations to the request context so that every single log entry could have access to them automaticly. For exemple, if I need that all my log entries have the logged UserName and the FormId that he is presently editing, I just had to create a new Middleware that use ILogger.BeginScope to achieve that and register the middleware at the beginning of the pipeline.