R – How to create workflow at runtime in .Net

.net-3.5workflow-foundation

I'm using .Net framework 3.5, VS IDE to work with windows application. I have requirement to Create State machine Workflow at runtime. That is, I need to define my states, Activities n target state in one windows form and based on that I need to create entire workflow at runtime. I require persistence and tracking too for the same. Can anybody tell me how I can achieve this.

I have thought of XAML based workflow, but still not getting proper idea.

Best Answer

Check out Windows Workflow Foundation. There are virtual labs if you want to check out the technology. Edit per comment: Ah, I see. There is a good series on that at WF - How to Make A Workflow Dynamic?

Related Topic