Im doing a comparison of serveral workflowframeworks. I need to determine which patterns from www.workflowpatterns.com WF supports. The important part is, we are not allowed to extend the framework to implement / simulate these behaviors.
My first concrete question, for know, is whether WF support the patten "Simple Merge" where two branches merge together. can we compare this to the IfElse contruct (link: http://www.hide-link.com/ )
Second. What about multi merge http://www.hide-link.com/ . Guess i would be imposible with the standard Sequential workflow since it is single threaded.
Have anyone created a list that sums up on these patterns in relation to WF
You could achieve complex patterns like this with the ConstrainedActivityGroup activity in a rule-based fashion.
As Kavita pointed out though, you could also achieve this through a custom activity. This would probably be a great activity to upload to CodeProject for workflow: http://www.codeproject.com/WF/
Thanks! Angel
Vignesh Kannappan - MSFT
Posted: Windows Workflow Foundation, Does WF support patterns like Simple Merge And Multi Merge?
Sorry I couldn't think of an OOB activity that would correspond to the Multi-merge pattern. Since you didnt want to extend the framework in any manner, writing your own custom activity to achieve this, I was out of ideas.