Skip to content

Instantly share code, notes, and snippets.

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

  • Save ssougnez/5f0a51a77553d51d63bad57586ab4726 to your computer and use it in GitHub Desktop.

Select an option

Save ssougnez/5f0a51a77553d51d63bad57586ab4726 to your computer and use it in GitHub Desktop.
// Program.cs
builder.Services.AddApplicationMigrations < AppMigrationEngine > (options =>
{
options.DbContext = typeof(AppDbContext); // Optional - enables transactions + auto EF migrations
});
var app = builder.Build();
await app.UseMigrationsAsync();
app.Run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment