I used this question accepted answer to highjack session start.
However - when I intercept new session start, I cannot access other global services which contains data I need on every session start and user request.
On old ASP.NET MVC 5 project, I did everythin at Global.asax on Application_AcquireRequestState event.
I need to access service, that I have added at ConfigureServices in Startup.cs
services.AddSingleton<LocalisedResources>(
sp => new LocalisedResources(Configuration.GetConnectionString("DefaultConnection")));
What am I missing?