- Entity Framework 7
- Dotnet Core 7
- Swagger
To run de project, execute the command:
dotnet run --project Web
To generate a migration, run the following command:
dotnet ef migrations add InitialCreate --project Infrastructure
To apply the migrations into the database, run the following command:
dotnet ef database update --project Infrastructure