I would like to be using sqlite such as I do for sqlserver, in my uses clauses:
using System.Data.Sqlite etc... What steps should I do?
That did not solve the problem, because I do not have any reference del tipo system.data.sqlite to add. Therefore I cannot use the sqlite framework at all. All i have is the nuget package but I do not know how to install it in VS.
My Problem was to implement the usage of Sqlite in VisualStudio in one of my projects. 1)I started downloading: the system.data.sqlite.core.1.0.108 NUGet package, from here: https://www.nuget.org/packages/System.Data.SQLite 2)But I did not know how to install it. Then someone pointed out that there is the Package Manager Console in Visual Studio and I can install by Console. 3)Following the tutorial on the same page I did this. Notice: you must have a solution opened in the VS in order for the PM to install the package. Packages will be installed on that Application only. 4)After that you can access all the functionalities of SQLite by including it with: Using System.Data.SQLite and System.Data.Sqlite.Generic