Introduction
Blazor has two kinds of Application development on is Blazor Client app which is in preview now and also Blazor Server app. Blazor Client app runs in WebAssembly, Blazor Server app runs using SignalR. Blazor apps can be created using C#, Razor, and HTML instead of JavaScript Blazor WebAssembly Works in all modern web browsers also in mobile browsers. The main advantage we have in Blazor is C# code files and Razor files are compiled into .NET assemblies. Blazor has reusable components, Blazor Component can be as a page, Dialog or Entry Form, Blazor also used to create Single Page Applications. Blazor is used to create two kinds of applications one is Blazor Client-Side App and another one is Blazor Server Side APP.here we will see some more details on

Blazor Client App

Blazor Server App

Prerequisites
Step 1 - Create a database and a table
We will be using our SQL Server database for our WEB API and EF. First, we create a database named CustDB and a table as CustDB. Here is the SQL script to create a database table and sample record insert query in our table. Run the query given below in your local SQL Server to create a database and a table to be used in our project.
  1. USE MASTER
  2. GO
  3. -- 1) Check for the Database Exists .If the database is exist then drop and create new DB
  4. IF EXISTS (SELECT [name] FROM sys.databases WHERE [name] = 'CustDB' )
  5. DROP DATABASE CustDB
  6. GO
  7. CREATE DATABASE CustDB
  8. GO
  9. USE CustDB
  10. GO
  11. -- 1) //////////// Customer Masters
  12. IF EXISTS ( SELECT [name] FROM sys.tables WHERE [name] = 'CustomerMaster' )
  13. DROP TABLE CustomerMaster
  14. GO
  15. CREATE TABLE [dbo].[CustomerMaster](
  16. [CustCd] [varchar](20) NOT NULL ,
  17. [CustName] [varchar](100) NOT NULL,
  18. [Email] [nvarchar](100) NOT NULL,
  19. [PhoneNo] [varchar](100) NOT NULL,
  20. [InsertBy] [varchar](100) NOT NULL,
  21. PRIMARY KEY (CustCd)
  22. )
  23. -- insert sample data to Student Master table
  24. INSERT INTO [CustomerMaster] (CustCd,CustName,Email,PhoneNo,InsertBy)
  25. VALUES ('C001','ACompany','[email protected]','01000007860','Shanun')
  26. INSERT INTO [CustomerMaster] (CustCd,CustName,Email,PhoneNo,InsertBy)
  27. VALUES ('C002','BCompany','[email protected]','0100000001','Afraz')
  28. INSERT INTO [CustomerMaster] (CustCd,CustName,Email,PhoneNo,InsertBy)
  29. VALUES ('C003','CCompany','[email protected]','01000000002','Afreen')
  30. INSERT INTO [CustomerMaster] (CustCd,CustName,Email,PhoneNo,InsertBy)
  31. VALUES ('C004','DCompany','[email protected]','01000001004','Asha')
  32. select * from CustomerMaster
Step 2 - Create ASP.NET Core Blazor Server Application
After installing all the prerequisites listed above, click Start >> Programs >> Visual Studio 2019 >> Visual Studio 2019 on your desktop. Click New >> Project.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
Click Create a new project to create our ASP.NET Core Blazor Application.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
Select Blazor App and click Next button
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
Select your project folder and Enter your Project name and then click Create button.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
After creating ASP.NET Core Blazor Server Application, wait for a few seconds. You will see the below structure in solution explorer.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
In the Data folder we can add all our Model, DBContext Class, Services and Controller, we will see that in this article.
In the Pages folder we can add all our component files.component file all should have the .razor extension with the file name.
In the Shared folder we can add all left menu form NavMenu.razor file and change the main content from the MainLayout.razor file.
In the _Imports.razor file we can see all set of imports has been added inorder to used in all component pages.
In the App.razor file we will add our main component to be displayed by default when run in browser.
Appsertings.json can be used to add the connection string.
Startup.cs file is important file where we add all our endpoints example like Controller end points, HTTP Client,add services and dbcontext to be used in startup Configuration method.

Run to test the application

When we run the application, we can see that the left side has navigation and the right side contains the data. We can see as the default sample pages and menus will be displayed in our Blazor web site. We can use the pages or remove it and start with our own page.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API

Debug in component

The big advantage of Blazor is as we can use our C# code in razor and also keep the breakpoint in the code part. In the browser we can debug and check for all our business logic is working properly and to trace any kind error easily with the breakpoint.
For this we take our existing Counter component page.
This is the actual code of our Counter page as in the counter we can see there is button and in button click called the method to perform the increment.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
We add one more button and in button click event we call the method and bind the name in our component page.
In html design part we add the below code.
  1. <h1>My Blozor Code part</h1>
  2. My Name is : @myName <br />
  3. <button @onclick="ClickMe">Click Me</button>
Note that : all the C# code part and functions can be written under the @code {} part.
We add the method ClickMe and declare property to bind the name inside the @Code part
  1. [Parameter]
  2. public string myName { get; set; }
  3. private void ClickMe()
  4. {
  5. myName="Shanu";
  6. }
The complete Coutner Component page code will be like this.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
Now lets add the break point in our ClickMe method,
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
Run the program and open the counter page.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
We can see as when we click on the Click Me button we can debug and check for the value from the breakpoint we placed.
Now lets see on performing CRUD operation using EF and Web API in Bloazor.
Step 3 - Using Entity Framework
To use the Entity Framework in our Blazor application we need to install the below packages
Install the Packages
Microsoft.EntityFrameworkCore.SqlServer - For using EF and SQL Server
Microsoft.EntityFrameworkCore.Tools - For using EF and SQL Server
Microsoft.AspNetCore.Blazor.HTTTPClient - For communicating WEB API from our Blazor Component.
First we will add the Microsoft.EntityFrameworkCore.SqlServer ,For this right click on the project and click on Manage NuGet Packages.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
Search for all the three packages and install all the needed packages like the below image.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API

Add DB Connection string

Open the appsetting file and add the connection string like below image.
  1. "ConnectionStrings": {
  2. "DefaultConnection": "Server= DBServerName;Database=CustDB;user id= SQLID;-password=SQLPWD;Trusted_Connection=True;MultipleActiveResultSets=true"
  3. },
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API

Create Model Class

Next, we need to create the Model class with same as our SQL Table name and also define the property fields similar to our SQL filed name as below.
Right Click the Data Folder and create new class file as “CustomerMaster.cs”
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
In the class, we add the property field name the same as our table column names like the below code.
  1. [Key]
  2. public string CustCd { get; set; }
  3. public string CustName { get; set; }
  4. public string Email { get; set; }
  5. public string PhoneNo { get; set; }
  6. public string InsertBy { get; set; }

Create dbConext Class

Next, we need to create the dbContext class. Right Click the Data Folder and create a new class file as “SqlDbContext.cs”
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
We add the below code in the DbContext class as below in order to add the SQLContext and add the DBset for our CustomerMaster Model.
  1. public class SqlDbContext:DbContext
  2. {
  3. public SqlDbContext(DbContextOptions<SqlDbContext> options)
  4. : base(options)
  5. {
  6. }
  7. public DbSet<BlazorCrudA1.Data.CustomerMaster> CustomerMaster { get; set; }
  8. }

Adding DbContext in Startup

Adding the DbContext in Startup.cs file ConfigureServices method as below code and also we give the connection string which we used to connect to SQLServer and DB.
  1. services.AddDbContext<SqlDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
Note that in the ConfigureServices method we can also see as the weatherforecast service has been added.if we create an new service then we need to add the service in like below code in ConfigureServices method.
  1. services.AddSingleton<WeatherForecastService>();

Creating Web API for CRUD operation

To create our WEB API Controller, right-click Controllers folder. Click Add New Controller.
Here we will be using the Scaffold method to create our WEB API. We select API Controller with actions, using Entity Framework and click Add button.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
Select our Model class and DBContext class and click Add button.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
Our WEB API with Get/Post/Put and Delete method for performing the CRUD operation will be automatically created and we no need to write any code in Web API now as we have used the Scaffold method for all the actions and methods add with code.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
To test Get Method, we can run our project and copy the GET method API path. Here, we can see our API path to get /api/CustomerMasters/

Run the program and paste API path to test our output.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
If you see this error means then we need to add the endpoints of controller in the Startup.cs file Configure method.
Add the below code in the Configure method in Startup.cs file
  1. endpoints.MapControllers();
we add inside the UseEndpoints like below code in Configure method.
  1. app.UseEndpoints(endpoints =>
  2. {
  3. endpoints.MapControllers();
  4. endpoints.MapBlazorHub();
  5. endpoints.MapFallbackToPage("/_Host");
  6. });
Now run again and check for /api/CustomerMasters/ to see the Json data from our database.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
Now we will bind all this WEB API Json result in component.

Working with Client Project

First, we need to add the Razor Component page

Add Razor Component

To add the Razor Component page right click the Pages folder from the Client project. Click on Add >> New Item >> Select Razor Component >> Enter your component name,Here we have given the name as Customerentry.razor
Note all the component file need to have the extentions as .razor.
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API
In Razor Component Page we have 3 parts of code as first is the Import part where we import all the references and models for using in the component, HTML design and data bind part and finally we have the function part to call all the web API to bind in our HTML page and also to perform client-side business logic to be displayed in Component page.

Import part

First, we import all the needed support files and references in our Razor View page. Here we have first imported our Model class to be used in our view and also imported HTTPClient for calling the Web API to perform the CRUD operations.
  1. @page "/customerentry"
  2. @using BlazorCrudA1.Data
  3. @using System.Net.Http
  4. @inject HttpClient Http
  5. @using Microsoft.Extensions.Logging

Register HTTPClient for Server side Blazor

In order to use the HTTPClient in Blazor Server side we need to add the below code in Startup.cs ConfigureServices method.
  1. services.AddResponseCompression(opts =>
  2. {
  3. opts.MimeTypes = ResponseCompressionDefaults.MimeTypes.Concat(
  4. new[] { "application/octet-stream" });
  5. });
  6. // Server Side Blazor doesn't register HttpClient by default
  7. if (!services.Any(x => x.ServiceType == typeof(HttpClient)))
  8. {
  9. // Setup HttpClient for server side in a client side compatible fashion
  10. services.AddScoped<HttpClient>(s =>
  11. {
  12. // Creating the URI helper needs to wait until the JS Runtime is initialized, so defer it.
  13. var uriHelper = s.GetRequiredService<NavigationManager>();
  14. return new HttpClient
  15. {
  16. BaseAddress = new Uri(uriHelper.BaseUri)
  17. };
  18. });
  19. }

HTML design and data Bind part

Next, we design our Customer Master details page to display the Customer details from the database and created a form to Insert and update the Customer details we also have Delete button to delete the Custoemr records from the database.
For binding in Blazor we use the @bind="@custObj.CustCd" and to call the method using @onclick="@AddNewCustomer"
  1. <h1> ASP.NET Core BLAZOR CRUD demo for Customers</h1>
  2. <hr />
  3. <table width="100%" style="background:#05163D;color:honeydew">
  4. <tr>
  5. <td width="20"> </td>
  6. <td>
  7. <h2> Add New Customer Details</h2>
  8. </td>
  9. <td> </td>
  10. <td align="right">
  11. <button class="btn btn-info" @onclick="@AddNewCustomer">Add New Customer</button>
  12. </td>
  13. <td width="10"> </td>
  14. </tr>
  15. <tr>
  16. <td colspan="2"></td>
  17. </tr>
  18. </table>
  19. <hr />
  20. @if (showAddrow == true)
  21. {
  22. <form>
  23. <table class="form-group">
  24. <tr>
  25. <td>
  26. <label for="Name" class="control-label">Customer Code</label>
  27. </td>
  28. <td>
  29. <input type="text" class="form-control" @bind="@custObj.CustCd" />
  30. </td>
  31. <td width="20"> </td>
  32. <td>
  33. <label for="Name" class="control-label">Customer Name</label>
  34. </td>
  35. <td>
  36. <input type="text" class="form-control" @bind="@custObj.CustName" />
  37. </td>
  38. </tr>
  39. <tr>
  40. <td>
  41. <label for="Email" class="control-label">Email</label>
  42. </td>
  43. <td>
  44. <input type="text" class="form-control" @bind="@custObj.Email" />
  45. </td>
  46. <td width="20"> </td>
  47. <td>
  48. <label for="Name" class="control-label">Phone</label>
  49. </td>
  50. <td>
  51. <input type="text" class="form-control" @bind="@custObj.PhoneNo" />
  52. </td>
  53. </tr>
  54. <tr>
  55. <td>
  56. <label for="Name" class="control-label">Insert By</label>
  57. </td>
  58. <td>
  59. <input type="text" class="form-control" @bind="@custObj.InsertBy" />
  60. </td>
  61. <td width="20"> </td>
  62. <td>
  63. </td>
  64. <td>
  65. <button type="submit" class="btn btn-success" @onclick="@AddCustomer" style="width:220px;">Save</button>
  66. </td>
  67. </tr>
  68. </table>
  69. </form>
  70. }
  71. <table width="100%" style="background:#0A2464;color:honeydew">
  72. <tr>
  73. <td width="20"> </td>
  74. <td>
  75. <h2>Customer List</h2>
  76. </td>
  77. </tr>
  78. <tr>
  79. <td colspan="2"></td>
  80. </tr>
  81. </table>
  82. @if (custs == null)
  83. {
  84. <p><em>Loading...</em></p>
  85. }
  86. else
  87. {
  88. <table class="table">
  89. <thead>
  90. <tr>
  91. <th>Customer Code</th>
  92. <th>Customerr Name</th>
  93. <th>Email</th>
  94. <th>Phone</th>
  95. <th>Inserted By</th>
  96. </tr>
  97. </thead>
  98. <tbody>
  99. @foreach (var cust in custs)
  100. {
  101. <tr>
  102. <td>@cust.CustCd</td>
  103. <td>@cust.CustName</td>
  104. <td>@cust.Email</td>
  105. <td>@cust.PhoneNo</td>
  106. <td>@cust.InsertBy</td>
  107. <td><button class="btn btn-primary" @onclick="@(async () => await EditCustomer(cust.CustCd))" style="width:110px;">Edit</button></td>
  108. <td><button class="btn btn-danger" @onclick="@(async () => await DeleteCustomer(cust.CustCd))">Delete</button></td>
  109. </tr>
  110. }
  111. </tbody>
  112. </table>
  113. }

Function Part

Function part to call all the web API to bind in our HTML page and also to perform client-side business logic to be displayed in Component page.In this Function we create a separate function for Add, Edit and Delete the student details and call the Web API Get,Post,Put and Delete method to perform the CRUD operations and in HTML we call all the functions and bind the results.
  1. @code {
  2. private CustomerMaster[] custs;
  3. CustomerMaster custObj = new CustomerMaster();
  4. string ids = "0";
  5. bool showAddrow = false;
  6. bool loadFailed;
  7. protected override async Task OnInitializedAsync()
  8. {
  9. ids = "0";
  10. custs = await Http.GetJsonAsync<CustomerMaster[]>("/api/CustomerMasters/");
  11. }
  12. void AddNewCustomer()
  13. {
  14. ids = "0";
  15. showAddrow = true;
  16. custObj = new CustomerMaster();
  17. }
  18. // Add New Customer Details Method
  19. protected async Task AddCustomer()
  20. {
  21. if (ids == "0")
  22. {
  23. await Http.SendJsonAsync(HttpMethod.Post, "/api/CustomerMasters/", custObj);
  24. custs = await Http.GetJsonAsync<CustomerMaster[]>("/api/CustomerMasters/");
  25. }
  26. else
  27. {
  28. await Http.SendJsonAsync(HttpMethod.Put, "/api/CustomerMasters/" + custObj.CustCd, custObj);
  29. custs = await Http.GetJsonAsync<CustomerMaster[]>("/api/CustomerMasters/");
  30. }
  31. showAddrow = false;
  32. }
  33. // Edit Method
  34. protected async Task EditCustomer(string CustomerID)
  35. {
  36. showAddrow = true;
  37. ids = "1";
  38. //try
  39. //{
  40. loadFailed = false;
  41. ids = CustomerID.ToString();
  42. custObj = await Http.GetJsonAsync<CustomerMaster>("/api/CustomerMasters/" + CustomerID);
  43. string s = custObj.CustCd;
  44. showAddrow = true;
  45. // }
  46. //catch (Exception ex)
  47. //{
  48. // loadFailed = true;
  49. // Logger.LogWarning(ex, "Failed to load product {ProductId}", CustomerID);
  50. //}
  51. }
  52. // Delte Method
  53. protected async Task DeleteCustomer(string CustomerID)
  54. {
  55. showAddrow = false;
  56. ids = CustomerID.ToString();
  57. await Http.DeleteAsync("/api/CustomerMasters/" + CustomerID);
  58. custs = await Http.GetJsonAsync<CustomerMaster[]>("/api/CustomerMasters/");
  59. }
  60. }

Navigation Menu

Now we need to add this newly added CustomerEntry Razor component to our left Navigation. For adding this Open the Shared Folder and open the NavMenu.cshtml page and add the menu.
  1. <li class="nav-item px-3">
  2. <NavLink class="nav-link" href="CustomerEntry">
  3. <span class="oi oi-list-rich" aria-hidden="true"></span> Customer Master
  4. </NavLink>
  5. </li>
Build and Run the application,
All You Need To Know On Blazor App And Create ASP.NET Core Blazor CRUD App Using VS 2019, .NET Core 3, Web API

Conclusion

Note that when creating the DBContext and setting the connection string, don’t forget to add your SQL connection string. Here we have created a table in SQL server and used with Web API you can also do this with Services and also Code First approach, Hope you all like this article. In the next article, we will see more examples to work with Blazor. It's really very cool to work with Blazor.