Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Our legacy SW is an Access application which communicates with SQL Server Databases storing the commercial data. So naturally the Access application also has some Access tables and queries to store some data. In fact it is of huge amount including different query strings, user settings, etc. I am talking about tens of tables each including tens of rows. And that's only the tables(of course some of the queries and macros of the Access can be integrated with the normal classes and functions).

Now we want to switch to new .NET/WPF technology, the first question would be how we can organize such Access data. To include a Access database is not really what we want because it provides poor support for version control. To use embedded resources (in the form of multiple xml files for example)is of course not desirable because that prevents modifying those data. The normal resources (still, in the form of xml files) allows modification, as far as I know. But I still don't know whether that is the best way. For example, the structure of all the xml files is hard to maintain for such scale of data: I can't have one hundred xml files just for configuration

What is a good way to organize and maintain such data? Thanks for your help!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.