Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

samuel-oldra/DevStudyNotes.API

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DevStudyNotes - Jornada .NET Direto ao Ponto

Tecnologias e práticas utilizadas • Funcionalidades • Comandos

Foi desenvolvida uma API REST completa de cadastro e leitura de notas de estudo.

Tecnologias e práticas utilizadas

  • ASP.NET Core com .NET 7
  • Entity Framework Core
  • SQL Server / SQLite / In-Memory database
  • Swagger
  • Injeção de Dependência
  • Programação Orientada a Objetos
  • Logs com Serilog
  • Clean Code
  • Publicação

Funcionalidades

  • Cadastro, Listagem, Detalhes de Notas de Estudo
  • Cadastro de Reações

alt text

Comandos

Comandos básicos

dotnet new gitignore
dotnet new webapi -o DevStudyNotes.API
dotnet build
dotnet run
dotnet watch run
dotnet publish

Tool Entity Framework Core (migrations)

dotnet tool install --global dotnet-ef
dotnet tool uninstall --global dotnet-ef

Migrations

dotnet ef migrations add InitialMigration -o Persistence/Migrations
dotnet ef database update