项目中实际中用到WF ,但是数据库是采用的ORACLE,所以必须重写IPendingWork接口
代码如下
1 public void Complete(bool succeeded, System.Collections.ICollection items)
2 {
3
4 }
5
6 public bool MustCommit(System.Collections.ICollection items)
7 {
8 return true;
9 }
10 public void Commit(Transaction transaction, System.Collections.ICollection items)
11 {
12 }