Reloading appsettings at runtime

Hi,
Is it possible to safely hot-reload appsettings at runtime without restart?
I want to start and use MultiAppSettingsBuilder and I wonder if that is possible.

Thanks

It’s not possible with most providers, generally AppSettings should be immutable after they’re loaded.
But the App Settings aren’t cached if you use OrmLiteAppSettings, where every access will query its configured RDBMS and return the current DB value.

1 Like