Accelergreat.EntityFramework.SqlServer 5.0.0-beta.eadb69d

Prefix Reserved
This is a prerelease version of Accelergreat.EntityFramework.SqlServer.
dotnet add package Accelergreat.EntityFramework.SqlServer --version 5.0.0-beta.eadb69d
                    
NuGet\Install-Package Accelergreat.EntityFramework.SqlServer -Version 5.0.0-beta.eadb69d
                    
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.SqlServer" Version="5.0.0-beta.eadb69d" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Accelergreat.EntityFramework.SqlServer" Version="5.0.0-beta.eadb69d" />
                    
Directory.Packages.props
<PackageReference Include="Accelergreat.EntityFramework.SqlServer" />
                    
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.SqlServer --version 5.0.0-beta.eadb69d
                    
#r "nuget: Accelergreat.EntityFramework.SqlServer, 5.0.0-beta.eadb69d"
                    
#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.SqlServer@5.0.0-beta.eadb69d
                    
#: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.SqlServer&version=5.0.0-beta.eadb69d&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Accelergreat.EntityFramework.SqlServer&version=5.0.0-beta.eadb69d&prerelease
                    
Install as a Cake Tool

Accelergreat.EntityFramework.SqlServer

SQL Server database component support for Accelergreat integration tests.

Install

dotnet add package Accelergreat.EntityFramework.SqlServer

Prerequisites

  • SQL Server reachable from test environment
  • connection string configured for test usage

Typical component

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

Common configuration

{
  "SqlServerEntityFramework": {
    "ResetStrategy": "Transactions",
    "CreateStrategy": "Migrations"
  }
}

Reset strategy guidance

  • Transactions: fastest reset, best local developer feedback loop.
  • SnapshotRollback: slower but robust reset model, often preferred in CI.

Troubleshooting

  • Database does not reset as expected
    • verify ResetStrategy value in active Accelergreat config file
    • verify test project loads intended environment configuration
  • Connection issues
    • validate SQL Server is reachable from test host
    • verify credentials and DB permissions

FAQ

  • Which reset strategy should I start with?
    • Start with Transactions for local speed; switch to SnapshotRollback in CI if needed.
  • Do I need migrations?
    • Use CreateStrategy: Migrations when your test DB should mirror migration history.
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.0-beta.eadb69d 43 2/25/2026
4.0.2 308 7/16/2025
4.0.1 241 7/15/2025
4.0.0 384 6/16/2025
4.0.0-alpha.c246138 166 7/15/2025
4.0.0-alpha.8c58a78 156 7/15/2025
3.1.1-beta 646 11/6/2024
3.1.0-beta 101 11/6/2024
3.0.0 552 7/13/2024
3.0.0-beta.2 706 2/12/2024
3.0.0-beta.1 138 2/9/2024
2.3.0-beta 784 1/23/2024
2.2.7 1,275 9/1/2023
2.2.6-beta 557 9/1/2023
2.2.5-beta 576 9/1/2023
2.2.4 591 9/1/2023
2.2.3-beta 1,014 3/26/2023
2.2.2-beta 745 3/26/2023
2.2.1-beta 747 3/25/2023
2.2.0-beta 760 3/25/2023
Loading failed