Introduction
In this article we are going to create a web application using ASP.NET Core MVC with the help of Visual Studio Code and ADO.NET. We will be creating a sample Employee Record Management System and performing CRUD operation on it.
Prerequisites
- Install .NET Core 2.0.0 or above SDK from here
- Download and install Visual Studio Code from here
- SQL Server 2008 or above
Before proceeding further i would recommend to download the source code from Github.
Creating Table and Stored Procedures
We will be using a DB table to store all the records of employees.
Open SQL Server and use the following script to create tblEmployee table.
Now, we will create stored procedures to add, delete, update, and get employee data.
Insert an Employee Record
Update an Employee Record
Delete an Employee Record
View all Employees Record
Now, our Database part has been completed. So, we will proceed to create the MVC application using Visual Studio code.
Create the MVC Web Application
We will be creating a source project from the terminal window in Visual Studio Code. Open VS code and navigate to view >> Integrated Terminal.

This will open the terminal window as shown in the image below.

Type the following sequence of commands in the terminal window. It will create our MVC application “MvcAdoDemo”
- mkdir MvcAdoDemo
- cd MvcAdoDemo
- dotnet new mvc

Now open this “MvcAdoDemo” project file using VS code. If it prompts the message “Required assets to build and debug are missing from MvcAdoDemo. Add them?”, select “Yes”.

You can observe in the solution explorer that we already have folders created with name Controllers, Models and Views. We will be adding our code files in these folders only.
Adding the Model to the Application
Right click on Models folder and select “New File”. Name it as Employee.cs. It will create a file inside Models folder.

Add one more file to Models folder. Name it as EmployeeDataAccessLayer.cs. This class will contain our Database related operations.
Open Employee.cs and put following code inside it. Since we are adding the required validators to the fields of Employee class, so we need to use System.ComponentModel.DataAnnotations at the top
Open EmployeeDataAccessLayer.cs and put the following code to handle database operations. Make sure to put your own connection string
To use ADO.NET functionalities in VS code we need to add the nuget package reference toSystem.Data.SqlClient. Open MvcAdoDemo.csproj file and put following code into it.
Put this code in the location highlighted in the image below.

Adding the Controller to the Application
Right click on Controllers folder and select “New File”. Name it as EmployeeController.cs. It will create a new file inside Controllers folder.

Now our EmployeeController has been created. We will put all our business logic in this controller.
Adding Views to the Application
To add views for our controller class, we need to create a folder inside Views folder with the same name as our controller and then add our views to that folder.
Right-click on the Views folder, and select “New Folder” and name the folder as Employee.

To add view files, right click on Employee folder inside Views folder and select “New File”. Name it asIndex.cshtml. This will create a view file inside Employee folder. Thus, we have created our first view. Similarly add 4 more views in Views/Employee folder, Create.cshtml, Delete.cshtml, Details.cshtml, andEdit.cshtml.
Now our Views folder will look like this

Since all our Views has been created, we will put codes in View and Controller for performing CRUD operations.
Index View
This view will be displaying all the employee records present in the database. Additionally, we will also be providing action methods Edit, Details and Delete on each record.
Open Index.cshtml and put following code in it
Open your EmployeeController.cs file, you can observer that it is empty. Put following code into it.
To handle database operations, we have created an object of EmployeeDataAccessLayer class inside theEmployeeController class.
Create View
This view will be used to Add new employee data to the database.
Open Create.cshtml and put following code into it.
To handle the business logic of create, open EmployeeController.cs and put following code into it.
The [Bind] attribute is used with parameter “employee” to protect against over-posting. To know more about over-posting visit here
Edit View
This view will enable us to edit an existing employee data.
Open Edit.cshtml and put following code into it.
To handle the business logic of Edit view, open EmployeeController.cs and add following code to it.
As you can observe that we have two Edit action methods, one for HttpGet and another for HttpPost.The HttpGet Edit action method will fetch the employee data and populates the fields of edit view. Once the user clicks on Save button after editing the record, a Post request will be generated which is handled by HttpPost Edit action method.
Details View
This view will display the details of a particular employee.
Open Details.cshtml and put following code into it.
To handle the business logic of Details view,open EmployeeController.cs and add following code to it
Delete View
This view will help us to remove employee data.
Open Delete.cshtml and put following code into it.
To handle the business logic of Delete view, open EmployeeController.cs and add following code to it.
To complete Delete operation we need two Delete methods accepting same parameter (Employee Id). But two methods with same name and method signature will create a compile time error and if we rename the Delete method then routing won’t be able to find it as asp.net maps URL segments to action methods by name. So, to resolve this issue we put ActionName(“Delete”) attribute to the DeleteConfirmed method. This attribute performs mapping for the routing system so that a URL that includes /Delete/ for a POST request will find the DeleteConfirmed method.
When we click on Delete link on the Index page, it will send a Get request and return a View of the employee using HttpGet Delete method. When we click on Delete button on this view, it will send a Post request to delete the record which is handled by the HttpPost DeleteConfirmed method. Performing a delete operation in response to a Get request (or for that matter, performing an edit operation, create operation, or any other operation that changes data) opens up a security hole. Hence, we have two separate methods.
Before launching the application, we will configure route URLs. Open Startup.cs file to set the format for routing. Scroll down to app.UseMvc method, where you can set the route url.
Make sure that your route URL is set like this
This url pattern sets HomeController as default controller and Index method as default action method, whereas Id parameter is optional. Default and optional route parameters need not be present in the URL path for a match. If we do not append any controller name in the URL then it will take HomeController as default controller and Index method of HomeController as default action method. Similarly, if we append only Controller name in the URL, it will navigate to Index action method of that controller.
Execution Demo
Now press F5 to launch the application and navigate to Employee controller by appending /Employee in the URL.
You can see the page as shown below.

Click on CreateNew to navigate to Create view. Add a new Employee record as shown in the image below.

If we miss the data in any field while creating employee record, we will get a required field validation error message.

After inserting the data in all the fields, click on “Create” button. The new employee record will be created and you will be redirected to the Index view, displaying records of all the employees. Here, we can also see action methods Edit, Details, and Delete.

If we want to edit an existing employee record, then click Edit action link. It will open Edit View as below where we can change the employee data.

Here we have changed the City of employee Dhiraj from Mumbai to New Delhi. Click on “Save” to return to the Index view to see the updated changes as highlighted in the image below.

If we miss any fields while editing employee records, then Edit view will also throw required field validation error message

If you want to see the details of any Employee, then click on Details action link, which will open the Details view, as shown in the image below.

Click on “Back to List” to go back to Index view. Now, we will perform Delete operation on an employee named Rahul. Click on Delete action link which will open Delete view asking for a confirmation to delete.

Once we click on Delete button, it will send HttpPost request to delete employee record and we will be redirected to the Index view. Here, we can see that the employee with name Rahul has been removed from our record.

Conclusion
We have learned about creating a sample MVC web application using ASP.Net Core 2.0, ADO.NET and SQL server with the help of Visual Studio Code. Post your valuable feedback in comment section.
Download the source code from Github.


0 comments:
Post a Comment
Note: only a member of this blog may post a comment.