Introduction
In this post, we will create a single page application in Blazor. We will store the data in Azure Table Storage. Also, we will see all the CRUD operations in this Blazor project. For that, we will create a Person app by storing the Id, Name, Country, Age, and Gender. We will generate the Id column value as GUID.
About Azure Table Storage
Azure Table Storage is a service that stores the structured NoSQL data in the cloud, providing a key/attribute store with a schemaless design. Table storage is always schema-less. Access to Table Storage data is fast and cost-effective for many types of applications and it is typically lower in cost than traditional SQL for similar volumes of data.
You can use table storage to store the flexible datasets like user data for web applications, device information, address books, or any other types of metadata that your service requires. You can store any number of entities in a table, and a storage account may contain any number of tables, up to the capacity limit of your storage account.
The “PartitionKey” and “RowKey” are major elements in Azure Table Storage and are used to save the data in a structured way, like indexing in SQL. “RowKey” mainly acts as a primary key in SQL.
You can refer to the below article to get more details on Azure Table Storage.
About Blazor Framework
Blazor is (still an experimental) .NET web framework from Microsoft using C#/Razor and HTML that runs in the browser with Web Assembly. Blazor provides all the benefits of a client-side web UI framework using .NET on the client and optionally on the server.
I have already written many articles on Blazor for you good people on C# Corner. If you are new to it, please refer to the below articles to get started with Blazor.
Create Azure Table Storage
Log into Azure Portal.
Create a Resource -> choose Storage Account.
After choosing the resource group, you can give a valid and unique (globally) name to the storage account. Click the “Review + create” button to validate the service details and then click the “Create” button to start the deployment of the storage account.
After a few moments, our storage account service will be ready.
Go to the Resource and choose “Configuration” blade and select “Disabled” option under "Secure transfer required". Click the “Save” button to save the settings. If you do not choose this, you can’t connect Azure Table Storage to Blazor application without HTTPS.
Go to “Overview” blade and choose “Tables” option to create a new table.
We can add multiple tables to the same storage account depending on the capacity of the storage account. Each table can contain multiple entities and each entity can store multiple documents. We will create a “Person” entity using C# in our Blazor project later.
You can click the “Access keys” blade and copy the connection string and save that to a secure place. We will use this connection string later in our Blazor application.
Create a Blazor project in Visual Studio 2017
We can create a new Blazor project using Visual Studio 2017 (I am using free community edition). Currently, there are three types of templates available for Blazor. We can choose Blazor (ASP.NET Core hosted) template.
Our solution will be ready shortly. Please note that there are three projects created in our solution - “Client”, “Server”, and “Shared”.
By default, Blazor creates many files in these three projects. We can remove all the unwanted files like “Counter.cshtml”, “FetchData.cshtml”, “SurveyPrompt.cshtml” from the Client project, “SampleDataController.cs” file from the Server project, and remove “WeatherForecast.cs” file from the Shared project.
We are going to process Azure Table Storage operations using “WindowsAzure.Storage” NuGet package. We must install this package in “Shared” project.
Create a “Models” folder in “Shared” project and create a “Person” class inside this folder.
Person.cs
Please note that we have inherited this class from the “TableEntity” class. We will use the “PartitionKey” and “RowKey” properties from the TableEntity class.
We can create a “DataAccess” folder in the Shared project. We then create “AzureTableSettings” inside this folder.
AzureTableSettings.cs
This file contains the ConnectionString and table name properties which we will later use to establish the CRUD operations.
Create an “IAzureTableStorage” interface to define the method declaration for CRUD operations.
IAzureTableStorage.cs
We can now implement the above interface in “AzureTableStorage” class.
AzureTableStorage.cs
We can create another interface “IPersonService” for the Person service. It will contain all the method declarations in the previous interface IAzureTableStorage. Only the method names are changed.
IPersonService.cs
Create a service class “PersonService” and implement the interface IPersonService.
PersonService.cs
We can go to the “Server” project and add “appsettings.json”. This JSON file will be used for configuration settings. We will keep the Azure Table Storage connection string and table name inside this JSON.
appsettings.json
We can modify the “Startup” class with the below code.
Startup.cs
We have injected the dependencies for Person service in this class.
Create the “PeopleController” class inside the “Controllers” folder. Copy the below code to this class.
PeopleController.cs
We have defined all the HTTP methods inside the above API class.
We can go to “Client” project and modify the “NavMenu.cshtml” Razor View file inside “Shared” folder with the below code.
NavMenu.cshtml
The above file handles the page navigation. We will show a “People Details” menu along with the “Home” menu.
Create a new Razor View file, such as “ListPeople.cshtml” inside the “Pages” folder and add the below code.
ListPeople.cshtml
The above Razor View will display all the Person details from Azure Table Storage.
We can add other three Razor View files for adding, editing, and deleting the Person data.
AddPerson.cshtml
EditPerson.cshtml
DeletePerson.cshtml
We can also modify the “Index.cshtml” file with the below code.
Index.cshtml
Run the application.
We have completed all the coding part. We can run the Blazor application.
We can click the “People Details” link and open the "List People" page. Click the “Create New Person” link to add a new person.
After saving the data, we can get the Person details in the grid. We can click “Edit” to modify the data.
I have modified the person name. We can add some more persons and their details. We get all the persons' data in a grid format.
We can also delete the data by clicking the “Delete” link. It will ask for confirmation before deleting the data.
After clicking the “Delete” button, our persons' data will be deleted.
In this post, we have created a storage account in Azure portal and created table storage. We have created a Blazor project in Visual Studio and performed all CRUD operations with Azure Table Storage.
References
- https://docs.microsoft.com/en-us/azure/cosmos-db/table-storage-overview
- https://docs.microsoft.com/en-us/azure/cosmos-db/table-storage-how-to-use-dotnet
- https://www.c-sharpcorner.com/article/azure-table-storage-in-asp-net-core-2-0/
We can see more exciting features of Blazor in upcoming posts.