quickstarts/workflows/csharp/sdk/README.md

988 B

Dapr workflows

In this quickstart, you'll create a microservice to demonstrate Dapr's workflow API. The service starts and manages a workflow to store and retrieve data in a state store.

This quickstart includes one service:

  • Dotnet client service order-processor

Run Dotnet service with Dapr

  1. Open a new terminal window and navigate to order-processor directory:
cd ./order-processor
dotnet restore
dotnet build
  1. Run the Dotnet service app with Dapr:
cd ./order-processor
dapr run --dapr-grpc-port 4001 dotnet run