Reputation: 32758
How I can call a workflow from another workflow in WF 4.0? What activity I have to use to achieve that?
Upvotes: 0
Views: 1812
Reputation: 3279
In WF4 any workflow can be consumed as an activity if you compile it. If you need to consume XAML I've added activities to Microsoft.Activities that makes this possible. We have sample code at Windows Workflow Foundation (WF4) - How To Invoke a Child Workflow as XAML
Upvotes: 4