Reputation: 23749
Using Nuget Package Manager
I installed System.Data.SQLite (x86/x64)
in VS2017
. That resulted in installing the following packages as well:
System.Data.SQLite
System.Data.SQLite.EF6
System.Data.SQLite.Core
But as shown in image below, the Add New Data Source
dialog box does not show the SQLite Data Provider
:
Upvotes: 13
Views: 12883
Reputation: 25351
The NuGet package is for your project and does not include a provider. For that, you need to install a DDEX provider package. There doesn't seem to be an official SQLite DDEX provider package for Visual Studio 2017, but you can try one of these two unofficial ones:
SQLite / SQL Server Compact Toolbox by ErikEJ
dotConnect ADO.NET Data Provider for SQLite by Devart Software
Upvotes: 17