Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created January 14, 2026 20:44
Show Gist options
  • Select an option

  • Save ssougnez/38224f485696edc3a8a73f3428f967f8 to your computer and use it in GitHub Desktop.

Select an option

Save ssougnez/38224f485696edc3a8a73f3428f967f8 to your computer and use it in GitHub Desktop.
public class AppMigrationEngine: BaseMigrationEngine
{
private readonly IConfiguration _config;
public AppMigrationEngine(IConfiguration config)
{
_config = config;
}
public override bool ShouldRun => _config.GetValue < bool > ("Migrations:IsMaster");
// … rest of the implementation
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment