
Introduction
In this session, we will learn
- How to consume the Employee in-memory database using EmployeeRepository.
- How to create an ASP.NET Core custom API controller with CRUD operations.
- Getting a List of Objects
- Create a new insert item
- Update an Item
- Delete an Item
- Write HttpPost Create API method.
- Write HttpPut Update API method.
- Write HttpPost Delete API method.
- Route table
- Set start controller Route to Home Index method.
- jQuery/HTML pass table row value to a JavaScript function
- jQuery Ajax HttpGet
- jQuery Ajax HttpPut
- jQuery Ajax HttpPost
- Editable HTML table
- Responsive Web Design
- A lab exercise for you to demonstrate what have you learned from this training material to create your own Todo CRUD operation using the TodoRepository included in this training material.
Prerequisites
To be able to run the example from the download or to build it from scratch, you need to have the following tools.
- Visual Studio 2017 or above
- .NET Core 2.0 or above
- jQuery
Create a new solution and name it as WebApiAspNetCoreJQuerySolution.
![New Project]()
Add a new ASP.NET Core Web Application project and name it as EmployeeJquery.Ui.
![ASP.NET Core]()
On the next screen,select Web API project template.
![ASP.NET Core]()
Compile and run the application and we’ll see the home page.
![Localhost Value1,2]()
We want to create the below single-page application with CRUD operations - Add, Update, and Remove functionality with the in-memory EmployeeRepository Database.
![Employee Added Succesfully]()
We need to perform the below tasks
- Set EmployeeRepository
- Create EmployeeController
- Add Home Index page - Creating a Client by Using jQuery Ajax
- Update API routing to go Home page.
- Create updateable HTML table and code jQuery AJAX Http Calls
Set Todo repository
Use SmartIT.Employee.MockDB which has TodoRepository in it with the in-memory MOCK database. You may go to the below website and read the usage examples.
https://www.nuget.org/packages/SmartIT.Employee.MockDB/
Use NuGet Package Manager to install SmartIT.Employee.MockDB from nugget.org.
![ASP.NET Core]()
Create employee controller
In the Controllers directory, add a new Web API controller Class and Add.
![Add New Item]()
EmployeeController will be created.
Replace the EmployeeController code with the below code which has all the APIs for CRUD operation.
Compile and run the application.
Test GetEmployees with calling to API.
http://localhost:60769/api/GetEmployees
Note. Your port number may be different than ours, use your local port number.
![Localhost Id]()
Creating a client by using jQuery Ajax
Add an MVC Controller Class in the Controller directory.
![Add New Item MVC]()
A HomeController will be created ike below.
Add 2 directories under Controller Views and Home like below.
![ASP.NET Core]()
Add an MVC View Page on the Home directory like below.
![Add New Item MVC View Page]()
An empty Index.CSS HTML will be created like below.
SmartIT by JohnKocer
Update API routing to go Home page
Add a route into Startup.cs page’s Configure method for the HomeController is like below.
Go to the launchsettings.json file under Properties directory like below screen capture below.
![ASP.NET Core]()
Update "launchUrl": "api/values", value to "launchUrl": "home".
Here is the updated launchsettings.json file
Compile and run
![Smart IT]()
Create updateable HTML table and code jQuery AJAX Http Calls
Update the Index. CSS HTML with the below content is the final result of the responsive web design result.
![Employee Added Succesfully]()
Summary
In this article, we will learn
- How to consume the Employee in-memory database using EmployeeRepository.
- How to create the ASP.NET Core custom API controller with CRUD operations.
- Getting List of Objects
- Create a new insert item
- Update an Item
- Delete an Item
- Write HttpPost Create API method.
- Write HttpPut Update API method.
- Write HttpPost Delete API method.
- Route table
- Set start controller Route to Home Index method.
- jQuery/HTML pass table row value to a JavaScript function
- jQuery Ajax HttpGet
- jQuery Ajax HttpPut
- jQuery Ajax HttpPost
- Editable HTML table
- Responsive Web Design
Lab exercise
A lab exercise for you to demonstrate what have you learned from this training material to create your own Todo JQuery CRUD Responsive Design SPA application. The TodoRepository included in this training material.
You can follow above steps to create your own To-do CRUD ASP.NET MVC jQuery application.
Download source code from GitHub.
Thank you for reading this article. You may be interested below Training articles to.
Resources