Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 840 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 840 Bytes

Setup

  • Clone this repo
  • Create appsettings.development.json
  • Copy contents of appsettings.json (at least the empty settings) into appsettings.development.json
  • Populate appsettings.development.json
    • Example connection strings:
      • local: Server=.;Database=Jellypic;Integrated Security=SSPI;MultipleActiveResultSets=true
      • Azure: get from Azure Portal
  • Open Package Manager Console
  • Run database migrations by executing this command: update-database

Development

OR

EF Migration

  • After making changes to entities, run the following command in package manager console:
  • add-migration <migration name>
  • update-database