I plan to use SQLite for ASP.net web application in VS 2019 (Microsoft Visual Studio Community 2019), and deploy the web application to remote hosting.
I google some resources, I find there are two way to install SQLite for ASP.net web application.
The one is to install it by adding SQLite component from NUGet in VS 2019, you can see Image 1
The two is to copy System.Data.SQLite.dll
to \Bin
folde of a project.
Q1:
Where can I download the alone latest System.Data.SQLite.dll
?
Q2:
What are differents to install Sqlite for ASP.net between the one way and the two way?