✅ Can you run EF Core migration update at application startup rather than with the CLI tools?
^
5 Replies
Yes
dbContext.Database.MigrateAsync()
Thanks!!!
So I would just call that when configuring services or what?
you'd call it after building the host
because you need the DI container to be built to pull the dbcontext out
Gotcha, awesome!