NuGet ยท nuget

microsoft.entityframeworkcore.sqlite

Cached from upstream

Install

Install-Kommandos

dotnet add package microsoft.entityframeworkcore.sqlite --version 9.0.0
<PackageReference Include="microsoft.entityframeworkcore.sqlite" Version="9.0.0" />
paket add microsoft.entityframeworkcore.sqlite --version 9.0.0
Install-Package microsoft.entityframeworkcore.sqlite -Version 9.0.0

README

Vorschau

Microsoft.EntityFrameworkCore.Sqlite is the EF Core database provider package for SQLite.

Usage

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");
}

Getting started with EF Core

See Getting started with EF Core for more information about EF NuGet packages, including which to install when getting started.

Additional documentation

See SQLite EF Core Database Provider for more information about the features of this database provider.

Feedback

If you encounter a bug or issues with this package,you can open an Github issue. For more details, see getting support.