Skip to content

Commit b17f9cd

Browse files
committed
mysql bug fix
1 parent 663e4cf commit b17f9cd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Provider for MySQL/Models/WorkflowProcessInstance.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ public override object GetValue(string key)
6666
case "StateName":
6767
return StateName;
6868
case "ParentProcessId":
69-
return ParentProcessId;
69+
return ParentProcessId.HasValue ? ParentProcessId.Value.ToByteArray() : null;
7070
case "RootProcessId":
71-
return RootProcessId;
71+
return RootProcessId.ToByteArray();
7272
default:
7373
throw new Exception(string.Format("Column {0} is not exists", key));
7474
}
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)