我一直在寻找一种将 SqlTrackingService 添加到 WF4 中的 WorkflowApplication 的方法,类似于在 WF3 中可以完成的方式,如下所示:
WorkflowRuntime wr = new WorkflowRuntime();
SqlTrackingService ts = new SqlTrackingService("Initial Catalog=Tracking;Data
Source=localhost;Integrated Security=SSPI;");
ts.UseDefaultProfile = true;
wr.AddService(ts);
wr.StartRuntime();
提前致谢!