/vkaudioposter-ef

EntityFramework CodeFirst

Primary LanguageC#GNU General Public License v3.0GPL-3.0

vkaudioposter-ef

EntityFramework CodeFirst

An utility to create, seed and use database for music posts service.

  1. Create MySQL Database user with SUPER privilegies in order to create functions
  2. Provide .env file:
SERVER="localhost"
USER=dbuser
PASSWORD=********
DATABASE=dbname
  1. Do Migrations first:

dotnet ef migrations add InitialCreate dotnet ef database update dotnet ef migrations add TaskMigration

VisualStudio:

  1. Add-Migration NameOfMigration
  2. Update-Database