Overview

The project exists for the purpose of code practice.

Prerequisites

Project setup

  1. Open cmd in project root directory
  2. Edit connection string to your db in appsettings.json
  3. Create migrations:
    dotnet ef migration add init
  4. Update your db by application model schema:
    dotnet ef database update
  5. Run app:
    dotnet run
  6. Open https://localhost:5001/swagger/index.html

Note from author

Please contact me if you have any problems/questions