Skip to content

A tuturial followed by Nick Chapsas

Notifications You must be signed in to change notification settings

dsseb/Tweetbook

 
 

Repository files navigation

Tweetbook

This repository due to following a video tutorial by Nick Chapsas.

Entity Framewrok

When things has changes that could be a DbSet has been added we need to tell Entity framework that something has happend.

This is done with the following two steps:

Powershell:

  • Add-Migration "Description"
  • Update-Database

dotnet:

  • dotnet ef migrations add <some-descriptive-text>
  • dotnet ef database update

About

A tuturial followed by Nick Chapsas

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.4%
  • Dockerfile 0.6%