November 2019
Intermediate to advanced
362 pages
7h 52m
English
The scenario is explained in the following diagram:

[FunctionName(FunctionNames.OrderReceiverFunction)]public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Function, "post")] HttpRequestMessage req, [OrchestrationClient] DurableOrchestrationClient starter, ILogger log){ string instanceId = null; var orderDto = await ReadOrderFromRequestAsync(req); if (orderDto != null && orderDto.IsValid()) { var order = orderDto.ToOrder(); instanceId = await starter.StartNewAsync(FunctionNames.OrderWorkflowFunction, order.Id, ...