I want to update my app to use the new SQL DB that was added in Mango. I have several collections currently stored in Isolated Storage. I would love to be able to some how convert those into tables so I can then do some sort of back up and restore process (ultimate goal).
I was just wondering if there was any tool that did this conversion process. If not, is there a tutorial that is out there that steps through this process?
If anyone has any other suggestions, I’d be game to hear them.
There is no tool to do this in an automated fashion. Since there are no structural constraints in how you save your data you have to write your own code to read and write the persisted collection. Likewise you have to write your own code to prepare this data to be inserted into the database. If you provide more info on you file and DB structure we can give more specifics on what to do.