-
Notifications
You must be signed in to change notification settings - Fork 0
API
michelmetran edited this page Nov 2, 2022
·
1 revision
Desenvolver uma API usando o Entity Framework
dotnet new webapi
dotnet watch run
NuGet Package
Swashbuckle.AspNetCoreÉ um ORM (Object Relational Mapping) para promover a integração com o banco de dados
Usar apenas uma vez
dotnet tool install --global dotnet-ef
Uma vez que as configurações estão definidas em appsettings.json e appsettings.Development.json
cd MyAPI
dotnet-ef migrations add CriacaoTabelaContato
dotnet-ef migrations remove
# Atualiza DB
dotnet-ef database updateEscolaPira