Reputation: 4059
I have stored all my application (key-value pair) settings in the app.config so far in my Windows Forms application. I'd like to change it, because
Using config for this purpose is very comfortable, but I can not work with it on because of these problems.
My question is, if there is an out-of-the box or well tested, widely used library/class/way that can read/write key-value pair settings from a database?
Upvotes: 3
Views: 3291
Reputation: 6322
You can look out the Cinchoo Framework. You can do it using 'Configuration Storage Plug-in', which is the extension of Cinchoo configuration framework. Using it you can write your own custom configuration piug-in and use them in your application. Hope it helps.
Upvotes: 1
Reputation: 634
If I understand your problem correctly, you want to store per-user configuration information for your application. You might want to try ASP.NET Profile Properties (available since 2.0). The functionality dovetails nicely with the Role Provider, which is commonly used for security.
http://msdn.microsoft.com/en-us/library/ie/2y3fs9xs.aspx.
Upvotes: 4