/aspnet-movie-api

simple application in ASP.Net Core to practice REST API with CSharp

Primary LanguageC#

USEFUL .NET COMMANDS ON LINUX

Add package to project

dotnet add package <package> --version <version>

Create migrations

dotnet ef migrations add <MigrationName> 

Remove the last migrations

dotnet ef migrations remove 

Apply migrations

dotnet ef database update