In this article, we will create a Single Page Application (SPA) using the server-side Blazor concepts with the help of Entity Framework Core database first approach. Single-Page Applications are web applications that load a single HTML page and dynamically update that page as the user interacts with the app.
We will be creating a sample Employee Record Management System and perform CRUD operations on it. A modal popup will display the form to handle the use inputs and the form also have a dropdown list, which will bind to a database table. We will also provide a filter option to the user to filter the employee records based on employee name.
We will be using Visual Studio 2017 and SQL Server 2017 for our demo.
Let us look at the final application
What is Server-Side Blazor?
The release 0.5.0 of Blazor allows us to run Blazor applications on the server. This means that we can run Blazor component server-side on .NET Core while other functionalities such as UI updates, event handling, and JavaScript interop calls are handled by a SignalR connection over the network.
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
- SQL Server 2012 or above.
Visual Studio 2017 versions below v15.7 does not support Blazor framework.
Creating Table
We will be using two tables to store our data.
- Employee: – Used to store the details of employee. It contains fields such as EmployeeID, Name, City, Department, and Gender.
- Cities: – This contains the list of cities and used to populate the City field of Employee table. It contains two fields CityID and CityName
Execute the following commands to create both tables.
Now, we will put some data into the Cities table. We will be using this table to bind a dropdown list in our web application from which the user will select the desired city. Use the following insert statements.
Now, our Database part is complete. Therefore, we will proceed to create the server side application using Visual Studio 2017.
Create Server Side Blazor Application
Open Visual Studio and select File >> New >> Project.
After selecting the project, a “New Project” dialog will open. Select .NET Core inside Visual C# menu from the left panel. Then, select “ASP.NET Core Web Application” from available project types. Put the name of the project as ServerSideSPA
and press OK.
After clicking on OK, a new dialog will open asking you to select the project template. You can observe two drop-down menus at the top left of the template window. Select “.NET Core” and “ASP.NET Core 2.1” from these dropdowns. Then, select “Blazor (Server-side in ASP.NET Core)” template and press OK
This will create our server-side Blazor solution. You can observe the folder structure in solution explorer, as shown in the below image,
The solution has two project files,
- ServerSideSPA.App: This is our server side Blazor app. This project has all our component logic and our services. We will also create our models and data access layer in this project.
- ServerSideSPA.Server: This is the ASP.NET Core hosted application. Instead of running client-side in browser the server side Blazor app run in the ASP.NET Core host application.
In future release of Blazor these two projects might be merged into one, but for now the separation is required due to the differences in the Blazor compilation model.
Scaffolding the Model to the Application
We are using Entity Framework core database first approach to create our models. We will create our model class in ServerSideSPA.App
project.
Navigate to Tools >> NuGet Package Manager >> Package Manager Console. Select ServerSideSPA.App
from Default project drop-down. Refer to image below,
First, we will install the package for the database provider that we are targeting which is SQL Server in this case. Hence, run the following command,
Since we are using Entity Framework Tools to create a model from the existing database, we will install the tools package as well. Hence, run the following command,
After you have installed both the packages, we will scaffold our model from the database tables using the following command,
Do not forget to put your own connection string (inside ” “). After this command gets executed successfully you can observe a Models folder has been created inside ServerSideSPA.App project and it contains three class files myTestDBContext.cs, Cities.cs and Employee.cs. The name of your DB Context class will be the name of your database suffixed with the word Context. Here my database name is myTestDB, hence the context class name is myTestDBContext. Hence, we have successfully scaffolded our Models using EF core database first approach.
Creating Data Access Layer for the Application
Right-click on ServerSideSPA.App project and then select Add >> New Folder and name the folder as DataAccess. We will be adding our class to handle database related operations inside this folder only.
Right click on DataAccess folder and select Add >> Class.
Name your class EmployeeDataAccessLayer.cs
. Open EmployeeDataAccessLayer.cs
and put the following code into it,
Here, we have defined the methods to handle database operations. GetAllEmployees will fetch all the employee data from Employee table. Similarly, AddEmployee will create a new employee record and UpdateEmployee will update the record of an existing employee. GetEmployeeData will fetch the record of the employee corresponding to the employee ID passed to it and DeleteEmployee will delete the employee record corresponding to the employee id passed to it. GetCityData will fetch the list of all the cities from Cities table.
Creating the Service class
Right click on Services folder and select Add >> Class. Give the name of class as EmployeeService.cs
and click Add. This will add the EmployeeService class to the Services folder.
Open EmployeeService.cs
and put the following code into it,
We will invoke the methods of EmployeeDataAccessLayer class from our service. The service will be injected to our components and the components will call the service methods to access the database.
At this point of time the ServerSideSPA.App project has the following structure:
Configuring the Service
To make the service available to the components we need to configure it on the server side app. Open ServerSideSPA.App >> Startup.cs file. Add the following line inside the ConfigureServices method of Startup class.
Refer to the image below:
Now we will proceed to create our view component.
Creating the View Component
We will add the Razor page in ServerSideSPA.App /Pages folder. By default, we have “Counter” and “Fetch Data” pages provided in our application. These default pages will not affect our application but for the sake of this tutorial, we will delete fetchdata and counter pages from ServerSideSPA.App /Pages folder.
Right-click on ServerSideSPA.App /Pages folder and then select Add >> New Item. An “Add New Item” dialog box will open, select “ASP.NET Core” from the left panel, then select “Razor Page” from templates panel and name it EmployeeData.cshtml. Click Add.
This will add an EmployeeData.cshtml
page to the Pages folder. This razor page will have two files, EmployeeData.cshtml
and EmployeeData.cshtml.cs
.
Now, we will add codes to these pages.
EmployeeData.cshtml
Open EmployeeData.cshtml
page and put the following code into it.
Let us understand this code. At the top we have defined the route of this page as “/fetchemployee”. This means if we append “/fetchemployee” to the root URL of the app, we will be redirected to this page.
We are also inheriting EmployeeDataModel
class, which is defined in EmployeeData.cshtml.cs
file. This will allow us to use the methods defined in EmployeeDataModel class.
After this, we have defined a button to add new employee record. When clicked, this button will open a modal popup to handle the user inputs.
We have also defined a searchbox and corresponding button to filter the employee records based on employee name. If you enter an employee name and click on filter button, it will show all the employee record for which the name matches the value entered in the field. If we click on filter button without entering any value in the search box, it will return all the employee records.
we will store the employee records returned from the database in the empList
variable. If the variable is not null then we will bind the values to a table to display the employee records in tabular fashion. Each employee record will also have two action links, Edit to edit the employee record and Delete to delete the employee record.
To handle the user inputs we are using a form. We are using a single form for both Add Employee and Edit Employee functionality. The form is defined in a modal popup and the modal popup is displayed on the screen based on the value of a Boolean property isAdd. The value of this Boolean property is set in the code behind (.cshtml.cs) page.
The City dropdown list inside the form is binding to our Cities table in database with the help of cityList variable. The cityList will be populated as the application boots up.
The form will have a Save button which will invoke SaveEmployee
method, defined in the code behind file to Add or update an employee record.
Similar to Add modal popup, we also have a Delete modal popup. It will be a read only modal and ask for a confirmation to delete an employee record. Upon clicking “Yes”, it will invoke the DeleteEmployee
method to delete the employee record.
EmployeeData.cshtml.cs
Open EmployeeData.cshtml.cs and put the following code into it.
Let us understand this code. We have defined a class EmployeeDataModel that will hold all our methods that we will be using in EmployeeData.cshtml
page.
We are injecting our EmployeeService to EmployeeDataModel class so that the client side methods can invoke our services.
The variables empList and cityList to hold the data from Employee table and Cities table respectively. The variables are initialized inside the OnInitAsync to make sure that the data is available to us as the page loads.
We will use the FilterEmp
method to filter the employee data based on the employee name property. This property will ignore the text case of search string and returns all the records that matches either fully or partially with the search string
Clicking of “Add Employee” button will invoke the AddEmp method. It will initialize an empty instance of Employee model and set the value of isAdd Boolean flag to true. This will open a modal popup with a form, asking the user to enter a new employee record. Similarly, we have defined an EditEmployee
method, which will fetch the record of the employee based on the employee id for which it is invoked. It will also set the value of isAdd to true to open the modal popup to edit the employee record.
The SaveEmployee
method will check if it is invoked to add a new employee record or to edit an existing employee record. If the EmployeeId property is set then it is an “edit” request and we will invoke the Edit method of our service. If EmployeeId is not set then it is a “create” request and we will invoke the Create method of our service. We will then fetch the updated employee record by calling GetEmployee method and also set the value of isAdd to false, thus closing the modal popup.
The DeleteConfirm
method is invoked on clicking the Delete button corresponding to an employee record. It will set the value of isDelete Boolean flag to true, which will display a Delete confirmation modal popup. Upon clicking YES inside this popup, DeleteEmployee method is invoked which will delete the employee record and set the isDelete Boolean flag to false to close the modal popup.
Adding Link to Navigation menu
The last step is to add the link to our “EmployeeData” page in the navigation menu. Open ServerSideSPA.App/Shared/NavMenu.cshtml
page and put the following code into it.
This completes our Single Page Application using server side Blazor.
Execution Demo
Press F5 to launch the application.
A web page will open as shown in the image below. The navigation menu on the left is showing navigation link for Employee data page.
Click on “Employee data” link, it will redirect to EmployeeData view. Here you can see all the employee data on the page. Notice the URL has “/fetchemployee” appended to it.
Click on Add Employee button to open “Add Employee” modal popup. Enter the data in all the fields and click on Save to create a new employee record.
This will create a new employee record and display the data on the view table. Add few more records and the view will be similar as shown below:
Click on Edit button, it will again open the modal popup for editing the employee record. Edit the input fields and click on save to update the employee record.
To filter the records of the employee, enter the employee name in the search box and click on Filter button. The search text is case independent and the filter operation will return all the employee records matching the name entered in search field. Refer to the image below:
If you click on the Delete button corresponding to the employee record, it will open a delete confirmation popup asking for a confirmation to delete the employee record.
Clicking on YES will delete the employee data and show the updated list of employees by refreshing the view table.
No comments:
Post a Comment