I wonder if there is implemented ConfigurationProvider for ASP.NET Core which loads options from Database. EF or Dapper. It's fairly easy to implement ourselves, but I wonder if there is ready solution, and if this really a good idea.
Asked
Active
Viewed 209 times
0
-
any update? Does my reply has helped you? – Brando Zhang Aug 26 '20 at 07:44
-
I don't like this project (it has one contributor and neglible download count) but yes, it correct, thank you – Leotsarev Aug 26 '20 at 16:17
1 Answers
1
According to your description, I suggest you could try to use EfConfigurationProvider
, you could directly use by installing through nuget package.
Install-Package EfConfigurationProvider -Version 0.2.1
More details about how to use it ,you could refer to this article.
If this doesn't match your requirement, I suggest you could create the custom provider by yourself, like this blog shows.

Brando Zhang
- 22,586
- 6
- 37
- 65