
Download color pdf version of this article with pictures.
Note. If you need to copy and paste the code, download the PDF file locally.
Introduction
In this session, we will learn the following.
- How to consume Todo in-memory database using TodoRepository.
- How to create a custom ASP.NET MVC custom controller with CRUD operations.
- List of Objects.
- Create a new insert object via View.
- Update an object via Edit View.
- Delete an Item via Delete View.
- Write HttpPost Create API method.
- Write the Httppost Edit API method.
- Write the HttpPost Delete API method.
- SmartIT DebugTraceHelper tool.
- A lab exercise for you to demonstrate what have you learned from this training material to create your own Employee CRUD operation using EmployeeRepository included in this training material.
Download the source code from GitHub.

UI - User Interface
We will have 5 Views,
- Index
- Create
- Edit
- Detail
- Delete
Controller
TodoController
Wire the Controller to Database and Views.
Database
We will be using an in-memory Todo repository to simplify the database.
![Todo repository]()
Create a new solution and name it TodoSolution.
![Todo Solution]()
Add a new .NET Core Console application called "DatabaseTest".
![DatabaseTest]()
Install the SmartIT.DebugTraceHelper package's latest version from nuget.org and install the SmartIT.Employee.MockDB 1.0.4 package's latest version too.
Let's test from MockDB test to get the Todo list.
![MockDB test]()
You will see that SmartIT.DebugHelper object extension CDump() method writes the Todo list in JSON format to the console below.
![JSON]()
Note. SmartIT.DebugHelper also has a DDump() object extension method writing the Output debug window.
![Output]()
SmartIT.DebugHelper DDump() extension method is useful when you are using other project types as given below because other projects may not have console output functionally.
![SmartIT.DebugHelper DDump]()
In Database CRUD operation, we need to use the below TodoRepository functionalities.
Let's test these functionalities before we use them.
We can see from the below output that all Todo functionality was passed for GetAll, FindById, Update, and Delete.
![Todo functionality]()
Part 2. Add a new Todo.Mvc.Ui ASP.NET Core web application project.
![Todo.Mvc.Ui ASP.NET]()
![Model view controller]()
Add NuGet packages to the newly created Todo.Mvc.Ui project. Install the latest versions of SmartIT.DebugTraceHelper and SmartIT.Employee.MockDB 1.0.4 packages from nuget.org.
![MockDB 1.0.4 packages]()
![Solution]()
Rebuild the Todo.Mvc.Ui project.
Right-click on the Controllers directory and select "Add Controller".
![Add Controller]()
Select MVC Controller with read/write actions like below.
![MVC Controller]()
Name the Controller as "TodoController".
![Todo Controller]()
Add the namespaces to the TodoController file.
Add the todo repository on the top of the TodoController class as a private member.
TodoRepository _todoRepository = new TodoRepository();
Update the public ActionResult Index() method return value with all todo lists calling the GetAll() method.
return View(_todoRepository.GetAll());
Here, you can see the changes in the below code section.
Right-click on the View in Index() method and select "Add View" like in the screenshot below.
![Add View]()
Choose the default View name as "Index".
Our Todo class is not in the Model class drop-down list. So, we need a workaround.
![Model class drop-down list]()
Work around
Inside the Models directory, add a new Workaround class.
![Models directory]()
And temporarily, write a new Todo class that inherits from SmartIT.Employee.MockDB.Todo class.
Now, add a View to Index and choose the Todo model class.
![Todo model class]()
Index.html page changes the model namespace to SmartIT.Employee.MockDB.
Let's change the Route template from template: "{controller=Home}/{action=Index}/{id?}"); to todo.
And, run the project.
From the Index page, click the "Create New" link.
![Create New Todo]()
Update the HttpPost Create method like below.
Add a new todo.
![New todo]()
![Create Index]()
Press F5 and run the project. Then, go to todo like below.
http://localhost:63274/todo
![ASP.NET Localhost]()
Add a "Create page". Go to TodoController Create() Method, right-click on the method, and select "Add View".
![Create page]()
Select View name and View Model like in the below picture and click the "Add" button.
![Add]()
Inside Create.html, change the first line from Todo.Mvc. Ui.Models.Todo to SmartIT.Employee.MockDB.Todo. Delete the id section.
We delete the ID because it is automatically added by the TodoRepository.
Add an "Edit" View page.
Go to the Index.cshtml page.
Update the Edit, Details, and Delete links.
Go to the TodoController page update the public ActionResult Edit(int id) method, and pass the findTodo to the View.
Add a new "Edit" View to the Edit method like below. The template is Edit and the Model class is Todo.
Click the "Add" button.
![Edit method]()
This will create the Edit.cshtml page like below.
Delete the ID section because we don’t want to update the primary key ID.
Update Todo reference from @model Todo.Mvc. Ui.Models.Todo to SmartIT.Employee.MockDB.Todo
Below is the final updated version of Edit View.
Press F5 and run the project. From the Index page, click "Edit".
![Edit Todo]()
Let's wire the Edit/Save button.
Go back to the TodoController HttpPost Edit method and update the // TODO: Add update logic here section.
Here is the updated edit section. Using id, we find the todo item, and using form collection with name key, findTodo.Name = collection["Name"];
We can update the Name value.
Press F5 and run the project. From the Index page, click "Edit".
Click on the Id=2 Do Dishes Edit link.
Update the name to "Do dishes-DONE".
![Do dishes-DONE]()
Click the "Save" button and we can see the value is updated in the Index View.
![Save]()
Let's create the Details View.
Go to the TodoController Details method below.
Add a View named Details, select the template as Details, and set the Model class as Todo.
![Model class as Todo]()
Click the "Add" button and Detail. cshtml will be created like below.
Detail. cshtml
As usual, update your workaround change from Todo. Mvc. Ui.Models.Todo namespace to SmartIT.Employee.MockDB.Todo.
Update Edit link id from @Html.ActionLink("Edit", "Edit", new { /* id = Model.PrimaryKey */ }) to new { id = Model.Id })
Here is the updated Details View.
Let's update the Details method that returns the selected Todo item to the Details view.
Using the id Details method parameter find the Todo item and send it to the View.
Here is the updated Details method.
Press F5 and run the project.
Pick the "Call Boss" Todo item and see the Detail View below.
![Call Boss]()
Add Delete View.
Go to TodoController and Update the Delete method from
To find deleted Todo items using the passed ID number, pass it to the View as an argument like below.
Add "Delete" View like below by selecting View name as Delete, Template as Delete, and Model class as Todo.
![Delete]()
Click the "Add" button.
Using our workaround update the Todo name space from @model Todo. Mvc. Ui.Models.Todo to SmartIT.Employee.MockDB.Todo.
Here is the updated Delete.cshtml View page.
Update the HttpPost Delete method section // TODO: Add delete logic here
With the following code.
Press F5 and run the project again.
Select the Do Dishes link and below, the Delete View shows.
![Do Dishes link]()
Click on the "Delete" button.
We can see that the "Do Dishes" Todo item has been deleted.
![Todo item deleted]()
Finally, comment out the workaround class which we don’t need anymore.
Summary
In this article, we have learned,
- How to consume Todo in-memory database using TodoRepository
- How to create a custom ASP.NET MVC custom controller with CRUD operations.
- List of Objects
- How to create a new insert object via View
- How to update an object via Edit View
- How to delete an Item via Delete View.
- How to write HttpPost and create API method.
- How to write Httppost and edit API method.
- How to write HttpPost and delete API method.
- About the SmartIT DebugTraceHelper tool
Download source code from GitHub.
Lab Exercise
A lab exercise for you to demonstrate what have you learned from this training material - Create your own Employee CRUD operation using EmployeeRepository is included in this training material.
You can follow the above steps to create your own Employee CRUD ASP.NET MVC application.