Created
January 14, 2026 20:42
-
-
Save ssougnez/5f0a51a77553d51d63bad57586ab4726 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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