How to call Action with parameter(s) using ExecuteWorkflowRequest in Dynamics CRM 2016?
问题 Context I can successfully call Actions using ExecuteWorkflowRequest where the called action has no parameters: var request = new ExecuteWorkflowRequest { EntityId = myEntityId, WorkflowId = myWorkFlowId, }; service.Execute(request); where action is a simple workflow, with Category "Action". However I can not call Actions with parameters. What I've tried so far: string myParameter = "Hello"; var inputArgumentCollection = new InputArgumentCollection(); inputArgumentCollection.Arguments.Add(