开发者

Save Workflow in Database

开发者 https://www.devze.com 2023-02-12 20:20 出处:网络
All Is there any way I can serialize Workflow and save i开发者_如何学Pythonn database and load it later on ?

All

Is there any way I can serialize Workflow and save i开发者_如何学Pythonn database and load it later on ?

How can I save instance of workflow in database in C# ?

Thanks


This is called workflow persistence. Here is a simple example to get you started. Essentially, when your workflow idles (there are certain points at which this is possible, e.g. a Delay Activity), if persistence is enabled, your workflow will create a resumption point (i.e. a bookmark), unload and persist to the instance store you've set up (SQL DB, XML file, etc.). When you resume, everything is loaded the way it was before.

0

精彩评论

暂无评论...
验证码 换一张
取 消