This is a simple project that demonstrates how to create a CRUD (Create, Read, Update, Delete) API in .NET using Dapper and SQLite.
- List all products
- Retrieve a product by ID
- Add a new product
- Update an existing product
- Delete a product
- .NET 9
- Dapper (ORM)
- SQLite.Core (Database)
The SQLite database will be created automatically when the application is started for the first time. Make sure the database.db file is created in the application directory.