摘要: Add project references to System.Activities.DurableInstancing andSystem.Runtime.DurableInstancing. Open the Program.cs file and alter thecode to: 1 class Program { 2 static SqlWorkflowInstanceStore sqlWorkflowInstanceStore =SetupSqlPersistenceStore(); 3 static void Main(string[] args) { 4 StartAndUn 阅读全文
posted @ 2012-08-05 21:19 wyking 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1 using System.Activities.DurableInstancing; 2 using System.Threading; 3 using System.Activities; 4 namespace ConfiguringSqlPersistenceStore { 5 class Program { 6 static void Main(string[] args) { 7 //setup sql persistence store 8 string sqlPersistenceDBConnectionString= 9 @"Data Source=.\sqlex 阅读全文
posted @ 2012-08-05 21:08 wyking 阅读(797) 评论(0) 推荐(0) 编辑