I am building a WebApp and hosting it on Azure that uses a SQL Server database. This is an Asp .Net Core MVC application that uses Entity Framework Core with Migrations. I am also using the Continuous Integration in Team Services to build and release my changes to my production site.
My question is: When I change my data model, execute the Add-Migrations & Update-Database, and then check in my changes (which triggers a build & Release), I want to make sure that the migrations are also implemented on the production database when the build or release is performed.
Can somebody please show me how to accomplish this within the Team Services "Build & Release" management?
Thank you,