Reputation: 21
I'm writing WPF application for my friend. This is the first time I'm using this technology (I spend most of my time in 3d area), so of course I'm encountering problem after a problem. I already grasped more or less the idea of UI controls and how they layout etc. The next logical step in my proceedings is to have the data stored... somewhere.
And here's the problem, how do WPF relates to data storage? Do I have to create some sort of mysql database/tables? At this moment I would like to have the data stored locally on the computer where the application is installed, but maybe in future there will be a need of backup it on the cloud. What's the best technical solution?
Upvotes: 2
Views: 1872
Reputation: 25
You can use several database engines, but.. if you want to store data and skip the server installation id suggest to try out SQLite , which stores all of your data into .dll files locally into your project folder.
You can use the Nuget package manager to get the SQLite package requiered. And also theres a lot of information to get started with.
Upvotes: 1