Good day, all
Any experience regarding the deployment of ASP.NET Boilerplate to Azure Cloud, particularly using continuous delivery?
7 Answer(s)
-
0
I'm deploying to Azure for my webApp and it's pretty straight forward and still no problem with the publish !
-
0
Thanks for your answer.
I will try and let you know.
-
0
Hi!
Regarding the Azure deployment, did you guys deploy it from visual studio or from some other platform?
-
0
I deploy from Visual Studio without problem. We do our DB migration and update via Visual Studio for our Azure DB.
-
0
Hello, all
I managed to deploy my app to azure, created the application and the database there, but I cannot get the EF migrations working, the tables just don't get created.
Is there any special consideration regarding this deployment?
Thanks in advance.
-
0
I also need this EF migration update on azure.
Not sure how to do that. Any suggestion please?
-
0
If you deploy from visual studio, you just have to check the option "Update database". If you deploy from TFS with CI, There is a special manipulation to do to make the migration works
Personally i'm not a big fan of code first migration. I don't like having to generate a file just because I added a new column in a database, or create index with C#. I only use code migration to update my db during the develpment. For the deployment I use a DB projec. I use Release management in TFS to deploy both the website and the database to the differents envionments.
<a class="postlink" href="https://msdn.microsoft.com/library/vs/alm/release/examples/azure/azure-web-apps-from-build-and-release-hubs">https://msdn.microsoft.com/library/vs/a ... lease-hubs</a> <a class="postlink" href="https://msdn.microsoft.com/library/vs/alm/release/examples/azure/azure-web-apps-and-sql-db">https://msdn.microsoft.com/library/vs/a ... and-sql-db</a>