Portable Database for WPF + C #

2

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.

    
asked by anonymous 14.03.2014 / 18:51

1 answer

1

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;))

    
14.03.2014 / 19:18