✅ Can you run EF Core migration update at application startup rather than with the CLI tools?

^
5 Replies
Angius
Angius6mo ago
Yes
Jimmacle
Jimmacle6mo ago
dbContext.Database.MigrateAsync()
nathanAjacobs
nathanAjacobsOP6mo ago
Thanks!!! So I would just call that when configuring services or what?
Jimmacle
Jimmacle6mo ago
you'd call it after building the host because you need the DI container to be built to pull the dbcontext out
nathanAjacobs
nathanAjacobsOP6mo ago
Gotcha, awesome!

Did you find this page helpful?