So, i built my application using Entity Framework database first. My database only has 2 tables, it's very small.
I've seen some videos on YT about deploying to Azure but looks like all of them use CodeFirst approach, then use enable migration on Package Manager, and then they publish the application using a checkbox to execute code migrations.
But since i built my application using Database First, i can't use this feature. The enable-migration feature only works for Code First.
So, what can i do to put my database on the Azure and deploy my application ?
EDIT WITH SOLUTION:
On SQL Server Management Tool, if you click with the Right Button on your Database and go to Task, you'll find the following option "Implant database on Azure SQL server Database".
You just need to specify the instance of the server in the cloud, the login and password, and click next and it'll deploy the database for you. IMPORTANT: FIRST, you need to make a connection with your local machine and the Azure Sql Server. To do that, you need to insert the IP Adress of your machine in the firewall definitions of the server on the cloud. It's well explained in this link: https://learn.microsoft.com/en-us/aspnet/mvc/overview/getting-started/database-first-development/publish-to-azure
Then, after you migrate the database, you just need to get the ConnectionString of the new database that you inserted on the AzureCloud, and then you go to your application on Visual Studio, Publish, update your connection string and deploy.

