This repository contains the follow-along exercise project HotelListing API from "Ultimate ASP.NET Core Web API Development Guide" made by Trevoir Williams. It is built using .NET Core 7. The project covers REST principles, connecting to a database, using Swagger, and developing custom middleware to bring out the full feature set of a .NET API.
The project uses the following technologies:
- .NET Core 7
- REST principles
- Swagger
- Entity Framework Core
- SQL Server
- Serilog
To get started with the project, follow these steps:
- Clone the repository to your local machine.
- Install the .NET Core 7 SDK and SQL Server on your machine.
- Update the connection string in the
appsettings.json
file with your SQL Server connection string. - Open the solution file in Visual Studio or another IDE of your choice.
- Restore the NuGet packages.
- Set the startup project to
HotelListing.API
. - Run the project.
The solution is composed of the following projects:
Core
: Contains the application logic and interfaces.Data
: Contains the domain models and business rules.API
: Contains the Web API controllers and middleware.
The project contains code samples for several areas of .NET Core development, including:
- REST principles
- Swagger
- Entity Framework Core
- SQL Server
- Custom middleware