Go to Program Files (x86) \ Microsoft SDK \ Windows Phone \ v8.0 \ Tools \ IsolatedStorageExplorerTool. Go to this folder and run one of the following commands:
ISETool.exe ts xd 8a40681d-98fc-4069-bc13-91837a6343ca c:\data\myfiles command, if you are running the application on emulator. ISETool.exe ts de 8a40681d-98fc-4069-bc13-91837a6343ca c:\data\myfiles command, if you are running the application on device.
The third argument is the application product identifier, you can get it in the WMAppManifest.xml file, App tag, ProductId attribute. The product identifier of this example is 8a40681d-98fc-4069-bc13-91837a6343ca.
Now, if everything is in order, you should have a copy of the contents of the isolated storage in c: \ data \ myfiles; And the database file should be there too. Then you can add your database file to your project using the "Add an existing product" option.
Remember to change the Copy to Ouput Directory property of the added .sqlite file to copy if it is newer.
source share