Reputation: 65
I'm saving data in both IsolatedStorageSettings.ApplicationSettings and ApplicationData.Current.LocalFolder in a windows phone 8 application. If i push an update to the existing application, what will happen to the data available in these locations. Will they still be available ?
Thanks Kumaran
Upvotes: 1
Views: 61
Reputation: 994
It will still be preserved. The only thing to note is to make sure what users have stored will still work with your code changes. e.g. If you store any xml and json data will it's schema still be right or do you need to write some code to convert it to a newer version.
If you have any data stored in the LINQ to SQL db then any new tables / columns that you've added wont automatically be there. You need to run some extra code to get them created. But sound's like your not going to have that issue anyway.
Upvotes: 0