Hi, @KPS
i couldn't find a tutorial.
If it's database first, you already have a database, right?
First you need to decide where to host your web application and database.
Do you want to deploy a new web application?
You can deploy to Azure in the same way as the code-first approach. However, no migration operation is required.
Don't have your database hosted in Azure yet?
With the database-first approach, you first need to prepare the database that your web application will use.
Whether using DDL scripts or using backup files, there are a number of strategies for hosting databases in Azure.
Common to all of the above are:
- you can deploy the web application normally
- Prepare the database referenced by the web application
- Make the connection string of the web application that of the prepared database