Skip to content

masoodkhoshgard/HavayarQuiz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HavayarQuiz

How To Add New Migration?

Example: Adding Migration

Using EF Core command line tool;

dotnet ef migrations add migrationName -p src/HavayarQuiz.Persistence.MsSql.Migrations/ -s src/HavayarQuiz.Persistence.MsSql.Migrations/

Using Visual Studio Package Manager Console;

Add-Migration migrationName -ProjectName src\HavayarQuiz.Persistence.MsSql.Migrations -StartUpProjectName src\HavayarQuiz.Persistence.MsSql.Migrations

Updating the Databases

Using EF Core command line tool;

dotnet ef database update -p src/HavayarQuiz.Persistence.MsSql.Migrations/ -s src/HavayarQuiz.Persistence.MsSql.Migrations/

Using Visual Studio Package Manager Console;

Update-Database -ProjectName src\HavayarQuiz.Persistence.MsSql.Migrations -StartUpProjectName src\HavayarQuiz.Persistence.MsSql.Migrations

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published