Accelergreat.EntityFramework.Sqlite 5.0.1

Prefix Reserved
dotnet add package Accelergreat.EntityFramework.Sqlite --version 5.0.1
                    
NuGet\Install-Package Accelergreat.EntityFramework.Sqlite -Version 5.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Accelergreat.EntityFramework.Sqlite" Version="5.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Accelergreat.EntityFramework.Sqlite" Version="5.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Accelergreat.EntityFramework.Sqlite" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Accelergreat.EntityFramework.Sqlite --version 5.0.1
                    
#r "nuget: Accelergreat.EntityFramework.Sqlite, 5.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Accelergreat.EntityFramework.Sqlite@5.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Accelergreat.EntityFramework.Sqlite&version=5.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Accelergreat.EntityFramework.Sqlite&version=5.0.1
                    
Install as a Cake Tool

Accelergreat.EntityFramework.Sqlite

SQLite database component support for Accelergreat integration tests.

Install

dotnet add package Accelergreat.EntityFramework.Sqlite

Typical component

public class AppDatabaseComponent : SqliteEntityFrameworkDatabaseComponent<AppDbContext>
{
    public AppDatabaseComponent(IConfiguration configuration) : base(configuration)
    {
    }
}

Common usage notes

  • Good fit for fast integration tests with lightweight DB requirements.
  • Useful when full SQL Server behavior is not required for the test scenario.

Troubleshooting

  • Schema not present
    • verify create strategy and initialization logic in component setup
  • Data persistence surprises
    • verify how the SQLite DB is configured (in-memory vs file-backed) in your test configuration

FAQ

  • When should I choose SQLite over SQL Server package?
    • Choose SQLite for lightweight tests where provider-specific SQL Server behavior is not required.
  • Can I still use the same Accelergreat test setup?
    • Yes. Swap the DB component base type and related package reference.
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.1 99 4/2/2026
5.0.0 89 4/2/2026
5.0.0-beta.eadb69d 51 2/25/2026
4.0.2 276 7/16/2025
4.0.1 262 7/15/2025
4.0.0 286 6/16/2025
4.0.0-alpha.c246138 154 7/15/2025
4.0.0-alpha.8c58a78 156 7/15/2025
3.1.1-beta 244 11/6/2024
3.1.0-beta 156 11/6/2024
3.0.0 294 7/13/2024
3.0.0-beta.2 643 2/12/2024
3.0.0-beta.1 116 2/9/2024
2.3.0-beta 216 1/23/2024
2.2.7 288 9/1/2023
2.2.6-beta 191 9/1/2023
2.2.5-beta 191 9/1/2023
2.2.4 261 9/1/2023
2.2.3-beta 245 3/26/2023
2.2.2-beta 262 3/26/2023
Loading failed