SQLite database provider for Entity Framework Core.
$ dotnet add package Microsoft.EntityFrameworkCore.SqliteMicrosoft.EntityFrameworkCore.Sqlite is the EF Core database provider package for SQLite.
Call the UseSqlite method to choose the SQLite database provider for your DbContext. For example:
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlite("Data Source=databse.dat");
}
See Getting started with EF Core for more information about EF NuGet packages, including which to install when getting started.
See SQLite EF Core Database Provider for more information about the features of this database provider.
If you encounter a bug or issues with this package,you can open an Github issue. For more details, see getting support.