I am trying to use System.Data.SQLite in a Windows 7 WPF application.
I have downloaded and installed
sqlite-netFx46-setup-bundle-x86-2015-1.0.103.0.exe
from https://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki
I have also installed the NuGet packages
EntityFramework version=6.0.0
System.Data.SQLite version=1.0.103
System.Data.SQLite.Core version=1.0.103
System.Data.SQLite.EF6 version=1.0.103
System.Data.SQLite.Linq version=1.0.103
I have tried to create an ADO.Net Entity Data Model and failed. Is this possible. What methods can I use to create the database? Code First? Model First (.edmx)? Hand write SQL code to create the database?
I am having trouble finding documentation on using SQLite with .Net. Is there hope or should I use a different database? Is there documentation that you can direct me towards?
Thanks in advance.