skip to Main Content

Azure Durable Function Return a Don't know how to bind to String. (Parameter 'value') Error in portal

Little bit new to azure durable function. I am trying out fanout/fanin Concept within the azure function. [FunctionName("MasterListUpdate")] public async Task<List<Task<string>>> RunOrchestrator( [OrchestrationTrigger] IDurableOrchestrationContext context) { var outputs = new List<Task<string>>(); var datalist = context.GetInput<List<string>>(); foreach (var state in StateList.States)…

VIEW QUESTION
Back To Top
Search