Objectives: 4.REST service on ASP.NET Core , the basics of webAPI development using ASP.NET Core. We will learn the principles of creating a webAPI project, methods of adding model classes and database context, creating controller templates using CRUD methods, configuring routing, URL paths and return values, calling webAPI using Postman. The end result is a webAPI that allows you to work with to-do list items stored in a database. *The source of step by step: .NET 7.0 (or later):: https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-7.0&preserve-view=true&tabs=visual-studio .NET Core 3.1 SDK https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-3.1&tabs=visual-studio № Task 1. Run the basic WeatherForecast test application and show its operation. 2. Develop and demonstrate a webAPI to work with to-do list items stored in a database 3. Demonstrate the operation of a data transfer object (DTO) that hides the information of the main object
Objectives:
4.REST service on ASP.NET Core
, the basics of webAPI development using ASP.NET Core. We will learn the principles of creating a webAPI project, methods of adding model classes and
The end result is a webAPI that allows you to work with to-do list items stored in a database.
*The source of step by step:
.NET 7.0 (or later):: https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-7.0&preserve-view=true&tabs=visual-studio
.NET Core 3.1 SDK
https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-3.1&tabs=visual-studio
№ |
Task |
|
1. |
Run the basic WeatherForecast test application and show its operation. |
|
2. |
Develop and demonstrate a webAPI to work with to-do list items stored in a database |
|
3. |
Demonstrate the operation of a data transfer object (DTO) that hides the information of the main object |
Task 1: Run the Basic Weather Forecast Test Application
- Follow the instructions in the provided links for. NET 7.0 or .NET Core 3.1 SDK, depending on the version you are using.
- Create a new ASP.NET Core Web API project using Visual Studio or your preferred development environment.
- Run the basic Weather Forecast test application that is often used as a starting point in ASP.NET Core tutorials. This will help you verify that your development environment is set up correctly and your web API project runs.
Step by step
Solved in 3 steps