I would like to connet to an SQLite database protecte by password into a project in .Net Core 2.1
For that, i import: Microsoft.EntityFrameworkCore.Sqlite.Core(2.2.2) System.Data.Sqlite.Core(1.0.109.2)
And i want to connect to my database:
using (var connexion = new SQLiteConnection($"Data Source={_Path};Password={_Password};"))
{
connexion.Open();
}
But i have the issue:
'SQL logic error Cannot use "Password" connection string property: library was not built with encryption support.
I don't know how to set password differently?