Darrell
Darrell
I am settling on a similar approach! I am thinking, on startup, load metadata from the backend about enabled plugins. That metadata will be leveraged by the front end shell...
Some interesting points thank you. > AppDomains don't exist in .NET Core anymore. (The AppDomain class is really just a proxy around AssemblyLoadContext) Whilst that is true, as Blazor wasm...
@Nazarii77 I don't think the implementation of `BulkSaveChangesAsync ` is complete due to this issue. I ended up ditching it and using the BulkInsert method instead.
Qualifier: I know practically nothing about FoundationDb or whether it is really suited for this sort of use case. I suspect its overkill to use it as a distributed config...
Thanks @KrzysFR Couple of points in case anyone looks at this in future. > The fdb API is async for all reads, meaning that any code that wants to pull...
> All of this needs a fully built IServiceProvider, as well as the proper environment variables to inject at least the connection string to the fdb cluster. > The main...
> There is maybe another way to work around this. The main issue is that, if you have Singleton services that are injected into other types like API controllers, and...
> How do you deal with third-party libraries that only accept an IOptions and do not support dynamic options that can change at runtime? (would need to restart the process...
> bootloader process that would query the database, populate an appsettings.json file, and spawn the actual server process (which would read this json file to populate the IConfiguration). > The...
I have a similar issue, with binding redirect not being added for a `PackageReference`. not sure if you want me to detail it here or create a seperate issue -...