Alexander Turtsevich

Results 50 comments of Alexander Turtsevich

@OsirisTerje, I've provided sample repo, there you can find all version information.

@manfred-brands, it seems that some lower level dependency has been upgraded since I originally posted this bug which was 1,5 months ago. I can no longer reproduce it using original...

@manfred-brands, original sample still fails when you use standalone runner: ``` NUnit Console 3.16.0 (Release) Copyright (c) 2022 Charlie Poole, Rob Prouse 17 october 2023 15:13:32 ```

Well, certainly there are many cases when you want service to be instantiated immediately (eager): - pre-load something - install listeners - do some global init One could use `APP_INITIALIZER`...

@birtles, on my desktop PC (Ubuntu 22.04) it also does not work, so it basically does not work in Ubuntu. Playwright had similar problem: https://github.com/microsoft/playwright/issues/20555

Ha-ha, 8 years later... You can skip adding function while running migrations: ``` // DatabaseInitializer internal static readonly AsyncLocal DbMigrator = new AsyncLocal(); DbMigrator.Value = true; var migrator = new...

@stowellt, did you try that yourself? I tried to implement `STRING_AGG` but it fails inside ef6 telling that argument count is not correct. See https://github.com/dotnet/ef6/issues/2090

@skurik, yes, it is possible, but you will have to fork this library, because it has several bugs. See example here (uses alternative): https://erikej.github.io/ef6/sqlserver/2021/12/01/ef6-sqlserver-cache-pollution.html

After experiments with `GuardTypePipe` I think that there is no any decent type inference in templates at all. ngIf, ngFor, ngSwitch - all break on any slightly generic or non-trivial...

Well... once again creating wrapper directive...