This is a simple CRUD (Create, Read, Update, Delete) API developed in .NET for study purposes. The API uses the SQLite database to store person records.
- .NET 9
- ASP.NET WebAPI
- Entity Framework Core
- SQLite
The API provides the following features:
- List all registered people
- Retrieve details of a specific person by their ID
- Add a new person
- Update an existing person's data
- Delete a person
The database used is SQLite, a lightweight and easy-to-configure database. The connection string is located in the appsettings.json
file.
To run the project locally, follow these steps:
- Make sure you have the .NET Core SDK installed on your machine.
- Clone this repository to your local machine.
- Open the project in your preferred development environment (e.g., Visual Studio, Visual Studio Code).
- Configure the connection string in the
appsettings.json
file, if necessary. - Run the application.