4.1: Run Migration
Add Photo DbSet Properties to DbContext
public DbSet<User> Users { get; set; }
public DbSet<Photo> Photos { get; set; } // <---- AddedRun New Migration and Update the Database
dotnet ef migrations add ExtendUser -s "../EFConnect.API/EFConnect.API.csproj"dotnet ef database update -s "../EFConnect.API/EFConnect.API.csproj"View New Columns and Table

Last updated