Tutorial 02 01 Building a Service From Scratch - Synergex/HarmonyCore GitHub Wiki

Tutorial 2: Building a Service from Scratch
This tutorial is recommended for anyone who is new to Harmony Core. It will take you through the process of building a fully functional Harmony Core service, step by step. The tutorial will explain what is happening at each step of the process, and you will test each new piece of functionality before moving on to implement the next.
This tutorial is divided into the following:
- Creating a Basic Solution
- Enabling OData Support
- Configuring Self Hosting
- Entity Collection Endpoints
- API Documentation
- Single Entity Endpoints
- OData Query Support
- Alternate Key Endpoints
- Expanding Relations
- Postman Tests
- Supporting CRUD Operations
- Adding a Primary Key Factory
- Adding Create Endpoints
- Adding Upsert Endpoints
- Adding Patch Endpoints
- Adding Delete Endpoints
Note: Throughout this tutorial, items in numbered lists (1., 2., 3., etc.) are used to indicate specific steps that you should complete.
Next topic: Creating a Basic Solution