Suppose I have following requirement:
I want to be able to create a list of rules that will look like this:
Keyword ToBeDeleted ToBeMoved
Rule1: "test keyword" true false
Rule2: "test keyword2" false true
According to this rules I want to find all documents from specific path and to needed action according to my rules.
My Question:
What is the best way to store this rules dynamically in an WPF application,I need to be able to add/update/delete rules when needed using UI .
In my mind are following scenarios:
- Store them in a XML File.
- Store them in a database(Access probably)
Does anybody know better solutions for this?