I'm creating a form in WPF + C # in VS Express 2013 for Desktop.
Is there a SQLite-like database that I can use with C # + WPF?
Since I came from Delphi development I got used to always having to install a server for the database.
I'm creating a form in WPF + C # in VS Express 2013 for Desktop.
Is there a SQLite-like database that I can use with C # + WPF?
Since I came from Delphi development I got used to always having to install a server for the database.
You can install a SQL Express, or use a .mdf file of SQL, Access, MySQL, Firebird whatever you want, in .NET you are free to be happy:)
For study I recommend SQL Express, even for small applications (averages in some cases)
Otherwise, a SQL Standard or other version will be fine.
(Give preference to Azure, the future is there;))