Dotnet
Articles Part 1

Solution - Modify Conduit Context Part 4

PRO
Outline

Solution: Modify Conduit Context Part 4

Execute Data Migrations to update the Database Tables
  • Open up a terminal by selecting [View], [Terminal] on the menu
  • In the terminal use the following commands:
    • dotnet ef migrations add Articles --project Conduit.Data --startup-project Conduit.Api
    • dotnet ef database update --project Conduit.Data --startup-project Conduit.Api
  • Check your database to see if the tables were created successfully
 

I finished! On to the next chapter