https://github.com/louresb/todo-app
This repository contains the exercise completed as part of the Balta.io course on backend development.
https://github.com/louresb/todo-app
aspnet-web-api csharp dotnet6 entity-framework sqlite
Last synced: about 2 months ago
JSON representation
This repository contains the exercise completed as part of the Balta.io course on backend development.
- Host: GitHub
- URL: https://github.com/louresb/todo-app
- Owner: louresb
- License: mit
- Created: 2023-04-28T00:31:00.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-31T17:31:52.000Z (about 3 years ago)
- Last Synced: 2025-05-08T16:54:00.176Z (about 1 year ago)
- Topics: aspnet-web-api, csharp, dotnet6, entity-framework, sqlite
- Language: C#
- Homepage:
- Size: 12.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ToDo App
[](https://github.com/louresb/TodoApp/blob/main/LICENSE)

This is a simple Todo App built with ASP.NET. It allows you to manage your to-dos by performing CRUD operations (Create, Read, Update, Delete) through a RESTful API.
The database mapping is done by Entity Framework.
## API Endpoints
- **GET /:** Retrieves all to-dos.

- **GET /{id}:** Retrieves a to do by ID.

- **POST /:** Creates a new to do.

- **PUT /{id}:** Updates a to do by ID.

- **DELETE /{id}:** Deletes a to do by ID.

## Learning resources
This API was created using [Balta.io](https://balta.io/)'s backend course. I recommend checking it out if you're interested in learning about .NET programming.
## License
[MIT License](https://github.com/louresb/TodoApp/blob/main/LICENSE) © [Bruno Loures](https://github.com/louresb)