/dotnet-boilerplate

A boilerplate created using dotnet and entity framework

Primary LanguageC#

oxe-dsign

Dotnet Boilerplate

A boilerplate created using dotnet and entity framework



🖥️ Technologies

  • Entity Framework 7
  • Dotnet Core 7
  • Swagger

🚀 Running

To run de project, execute the command:

dotnet run --project Web

🛢️ Migrations

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