Accelergreat Sql Server Entity Framework testing tools. Accelergreat is an integration testing package that helps to simplify and speed up the writing of integration tests, as well as taking away the challenging task of managing external dependencies.
License
—
Deps
6
Install Size
—
Vulns
✓ 0
Published
Feb 25, 2026
$ dotnet add package Accelergreat.EntityFramework.SqlServerSQL Server database component support for Accelergreat integration tests.
dotnet add package Accelergreat.EntityFramework.SqlServer
public class AppDatabaseComponent : SqlServerEntityFrameworkDatabaseComponent<AppDbContext>
{
public AppDatabaseComponent(IConfiguration configuration) : base(configuration)
{
}
}
{
"SqlServerEntityFramework": {
"ResetStrategy": "Transactions",
"CreateStrategy": "Migrations"
}
}
Transactions: fastest reset, best local developer feedback loop.SnapshotRollback: slower but robust reset model, often preferred in CI.ResetStrategy value in active Accelergreat config fileTransactions for local speed; switch to SnapshotRollback in CI if needed.CreateStrategy: Migrations when your test DB should mirror migration history.../../README.md