DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
  1. DZone
  2. Data Engineering
  3. Databases
  4. Deploying a Blazor Application on Azure

Deploying a Blazor Application on Azure

We explore the intersections of web app, cloud, and database development, by creating a Blazor app, hooking it up to a DB, and deploying it to Azure.

Ankit Sharma user avatar by
Ankit Sharma
·
Oct. 12, 18 · Tutorial
Like (2)
Save
Tweet
Share
9.36K Views

Join the DZone community and get the full member experience.

Join For Free

Introduction

In this article, we will learn how to deploy an ASP.NET Core hosted Blazor application on Azure. We will use Visual Studio 2017 to publish the app and create a SQL database server on Azure to handle DB operations.

Prerequisites

  • Install the .NET Core 2.1 or above SDK from here.
  • Install Visual Studio 2017 v15.7 or above from here.
  • Install ASP.NET Core Blazor Language Services extension from here.
  • An Azure subscription account. You can create a free Azure account here.

Please refer to my previous article Cascading DropDownList in Blazor Using EF Core to create the application that we will be deploying in this tutorial.

Create a Resource Group on the Azure Portal

We will create a resource group on the Azure portal to contain all our resources on Azure.

Login to the Azure portal and click on Resource groups on the left menu and then click Add. It will open a "Resource group" window as shown in the image below:

In this window, we need to fill the following details:

  • Resource group name: Give a unique name to your resource group. Here we will use the name BlazorDDLGroup.
  • Subscription: Select your subscription type from the drop-down. Here we are selecting the "free trial" subscription.
  • Resource group location: Select a location for your resource group from the drop-down.

Creating SQL DB and DB Server on Azure

We will create the SQL database and a database server on the Azure portal to handle our DB operations.

Click on SQL databases on the left menu of your Azure portal and then click Add. It will open a "SQL Database" window as shown in the image below:

Here you need to fill in the following details:

  • Database name: Put in a name for your database. Here we will use DDLDemodb as our DB name.
  • Subscription: Select your subscription type from the drop-down. Here we are selecting the "free trial" subscription.
  • Resource group: Select the resource group name that we have created in the previous step.
  • Select source: This dropdown contains a list of databases with predefined data provided by Azure. Since we are creating our custom database, hence we will select Blank database from this dropdown.
  • Pricing tier: Select a pricing tier for your database.

Before creating the database, we need to create a database server for the SQL database. Click on the "Server configure required settings" and then click Create a new server. It will open a "New server" window as shown in the image below:

Here we need to furnish the following details:

  • Server name: Provide a name for your DB server. Here we will use ddldemoserver. The DB server will be created by appending .database.windows.net to the user provided server name. Hence, the server name will be ddldbserver.database.windows.net in this case.
  • Server admin login: Set an admin login name for your DB server.
  • Password: Set the login password corresponding to the admin login for your DB server.
  • Location: Select a location for your server from the drop-down.

Check the "Allow Azure services to access server" checkbox and click on Select to create your DB Server.

The word "admin" is restricted for the administrator user name of database server. Use any other username than "admin."

Once the DB server is created, you will be redirected back to the "SQL Database" window. You need to click on the "Create" button to create your database.

Here is the whole process explained in a gif.

Creating DB Tables

The database DDLDemodb do not contain the tables that we are using in our application. We will connect to Azure database using SQL Server Management Studio (SSMS) to create our DB objects.

Open SSMS in your machine and set the server name as ddldbserver.database.windows.net. Provide the admin user id and password that you have configured in the previous section and click on "Connect."

You will get a pop-up window for configuring the firewall rule to access the Azure DB. Log in with your Azure account credentials and add your machine IP address under Firewall rule. Click on OK to connect to the Azure database server. Refer to the image below:

Once the connection is successful, you can see the DDLDemodb database on the server. Refer to my previous article Cascading DropDownList in Blazor Using EF Core and run the SQL commands to create and insert sample data in the Country and Cities table that we are using in our application.

Setting the DB Connection String

After creating the database objects, we need to replace the connection string of local database in our application with the connection string of the Azure database.

Open the Azure portal and click on SQL databases on the left menu. It will open a window displaying the list of all the databases that you created on the Azure portal. Click on the DDLDemodb database and select Connection strings from the menu. Select the ADO.NET tab and copy the connection string. Refer to the image below:

You need to put the admin user id and password for the database server that you have configured earlier into this connection string.

Open your BlazorDDL application using Visual Studio, navigate to BlazorDDL.Shared/Models/myTestDBContext.cs, and replace the local connection string with this new connection string.

Launch your application from Visual Studio to verify that the new connection string is configured correctly and you are able to access the Azure database.

If the application is not working and you are unable to connect to the database then check if your connection string is correct or not. Once the application is working as expected in your local machine then move to the next section to publish it on Azure.

Publishing Blazor Application to Azure

To publish the Blazor app on Azure, right-click on the server project of your solution and click publish. In this case, it will be BlazorDDL.Server >> Publish.

It will open the Pick a publish target window. Select App Service from the left menu. Select theCreate New radio button and click on the "Create profile" button. Refer to the image below:

The next window will ask you to login to your Azure account if you are not logged in. Once the login is successful, a Create App Service window will open. Refer to the image below:

The fields of this window have default values in them as per the configuration of your Azure account. However, you can change these values per your requirements.

You can fill the details as mentioned below:

  • App Name: Provide an app name for your application. The app name is subject to availability. If the app name you provided is already in use then you need to give a new app name. The website's public URL will be App Name followed by .azurewebsites.net. Here we are using the name as BlazorDDLDemo, hence the URL for our website will be BlazorDDLDemo.azurewebsites.net.
  • Subscription: Select your subscription type from the drop-down list.
  • Resource Group: Select your resource group name, which is BlazorDDLGroup, in this case.
  • Hosting Plan: You can either use the existing plan or select a new plan by clicking on the "New..." link.
  • Application Insights: You can choose a value from the dropdown list. It will provide analytics for your website.

Click on the "Create" button to start the application deployment on Azure. It will take a few minutes to complete depending on your internet connection speed.

After the deployment is successful, click on the "Publish" button to publish the app to Azure. Once the application is published successfully, the website will be automatically launched in the default browser of your machine. You can also access the website using the URL, BlazorDDLDemo.azurewebsites.net.

You can see the application in your browser as shown in the image below:

Conclusion

In this article, we learned how to deploy and publish a Blazor application on Azure. We created a SQL database and DB server on Azure and used in our application to handle the DB operations.

You can also read my other articles here.

azure application Database Blazor

Published at DZone with permission of Ankit Sharma, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Strategies for Kubernetes Cluster Administrators: Understanding Pod Scheduling
  • Keep Your Application Secrets Secret
  • Microservices Testing
  • A Gentle Introduction to Kubernetes

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: