I've been using the following home-grown configuration frameworks to manage configuration of my projects for a few years now:
The first one mimics Java's
.propertiesfiles (a bunch ofsupergroup.subgroup.property=valuelines with support for collections) and works fine for many situations (I find it's best for small applications). This one is good for very simple configurationA second based on
DataContractSerializer(and optionallyXmlSerializer) which allows all of the functionality of the first one with all of the perks of XML and fewer plumbing to make it work. This one is good but impractical and cumbersome to manage without an explicit UI over the top of it to mitigate the headaches of teaching end users to modify XML.
Both of the existing frameworks marshal to and from POCOs without issue to allow access to configuration values through properties/fields (through manual/automatic serialization respectively), so they are very easy to work with as a developer.
Now that I am reviewing their ability to enable database and fluent configuration, I'm looking for an out-of-the-box (preferably open source) alternative. I have no problem with reworking all of my existing projects if I can reduce unnecessary code duplication and allow them access to DB and fluent configuration (in addition to their existing abilities).
Any suggestions or is it worth rolling my own to get the features I'm after?
In my research I found this potentially duplicate question which is answered by Nini but it hasn't been updated in almost 2 years and only supports the options I already have covered (based on its documentation anyway). Did I miss something in my research or is there a better alternative?
Update
The explicit features I'm after are:
- XML files
- INI/Java-like
propertiesfiles - Database (at least MS SQL and SQLite, optionally MySQL and any others as you could imagine)
- Fluent (code generation not required)
- Some sort of extension API to allow me to add my own sources
- It definitely needs to serialize to/from any of the data sources to be accessible through properties/fields.
- Enumeration support
I'd be interested in extending an existing framework if it is open enough to do what I need to do, but otherwise it probably isn't a good fit.
UPDATE
The functionality from the existing System.Configuration namespace is great, and I'm familiar with how well it can work but in general it doesn't do what I am looking for. I've used it (even in advanced scenarios) but being that it only allows limited XML extensibility: it just isn't what I am after.
If I have to give on any of the predefined functionality, I'd say the fluent configuration is the least important (it'd be extremely difficult to provide a valuable interface for this generically anyway). I'll just bolt together something on top of whatever I find.
The mere fact that it has been over 24 hours (and > 125 views) and no one has been able to offer a reasonable alterative tells me it likely doesn't exist. I'll start on my own in hopes that someone can provide an interesting alternative.