up vote 0 down vote favorite
share [g+] share [fb]

A state machine workflow has the StateMachineWorkflowInstance class that you can use to inspect the current state of the workflow, get legal transitions, etc... Is there something like that for sequential workflows? I would like to have an easy way to programmaticaly find out what state the workflow is currently in.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Workflow tracking will five you a lot of information about the current state of your sequential workflow. It can even extract custom data from the workflow and store it as part of the tracking data if you want. By default it tracks all state changes for the workflow itself as well as all activities inside it.

The SqlTrackingQuery object helps in getting tracking data out of the database but it is straightforward to write your own SQL queries as well.

http://wiki.windowsworkflowfoundation.eu/default.aspx/WF/SqlTrackingService.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.