I have a question regarding Local Storage and persistent data in Windows 8.
As I have to store some data in my app locally, I was wondering what is the best approach to develop it. I read everywhere that SQLite is a good choice for that, but I see in this tutorial
“Create a blog reader”
that the feeds data source are saved in the Application Local Resources, Application.Resources property.
Is this a good workaround? When to use one or the other?
Thanks a lot.
To storage data you have ways:
1) SQL Lite in local folder.
2) Application settings.
3) Local Files.
This feed sample collect data in Application.Resources.
When You have a lot of data and data types with relations use SQLLite.
When You have a data system without relations use local storage.