How to publish website with sql database local db for azure using visual studio 2013

I have my website and it is running on a local server. I want to publish it in azure. I searched a lot but was unable to do this, however succeed in posting without a database. Can anyone provide a step by step guide on how to publish to azure and what tools to download from the Azure management portal. Thank.

+3


source to share


2 answers


Try http://www.asp.net/mvc/overview/getting-started/database-first-development/publish-to-azure and let us know if you need more help. You just need Visual Studio 2013.



+5


source


You cannot use localdb

with Azure Websites.



However, you can use localdb

for development, but change the connection string when deploying to use some other database like SQL Azure (see http://azure.microsoft.com/blog/2013/07/17/ windows-azure-web-sites-how-application-strings-and-connection-strings-work / )

+2


source







All Articles