Ed MacDonald
Ed MacDonald
We have tens of millions of rows in the PersistedGrants table and this block is resulting in a full scan during clean up: https://github.com/IdentityServer/IdentityServer4/blob/07898a61dc22ce9a95e5fc5611fa674feac4230e/src/EntityFramework.Storage/src/TokenCleanup/TokenCleanupService.cs#L77-L81 Sorting by the same column used...
Is there a way to specify `UsePreviousValue` for parameter-overrides provided in-line rather than in a file? In my case, some of the parameters are determined by the build (eg product...
`Contentful.AspNetCore` is referencing deprecated packages such as `Microsoft.AspNetCore.Http`. Please use conditional references in your project file so those of us that want to use this in `.net6+` don't have to...
If you use the `Two-stage initialization` from here: https://github.com/serilog/serilog-aspnetcore#two-stage-initialization ```c# public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .UseSerilog((context, services, configuration) => configuration .ReadFrom.Configuration(context.Configuration) .ReadFrom.Services(services) .Enrich.FromLogContext() .WriteTo.Console()) .ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup();...