Read original post at Iris Classon's Blog
A fairly delayed post unfortunately, to get us moving faster I’ve decided to add more features this time around so prepare for some big steps!
So far we haven’t discussed how we are going to store data, but I think it’s about time we do that. And to do this we will use SQLite. To do this we need to add SQLite for Windows Runtime. You do this by selecting Tools -> Extensions -> Online (search). After installing add a reference to it, by right clicking on the project -> Add Reference -> Extensions . Select SQLite as well as C++ Runtime Package , you’ll need both. To work with SQLite in C# we need a wrapper, and for now we will use sqlite-net. Open your Package Manager Console type: PM> Install-Package sqlite-net and hit enter.