I built a Minimal API using EF, Sqlite and C#. It works locally, but once I deploy it to Azure, I get a http 500 status code and a SQLite error that the table doesn’t exist. I don’t know if it doesn’t do the migrations because it works locally, please help – any advice?
Do I have to configure something so it will run the migrations and create the database in the cloud? First time I deploy backend with EF, have done it without it.
I asked chatgpt :v and searched on google (found nothing), chat gpt said that I should verify the configuration, or I don’t have the table or the migrations is not well configured.