Hello, I met a problem when using SyncList. I have a SyncList<group> groupList and every group has a guid. I called groupList.Add(A) in a command function and found the guid of group received by the callback is different from A.
var newGroup = new ActivityGroup();
newGroup.GUID = System.Guid.NewGuid().ToString();
groupList.Add(newGroup);
I tried to output the guid in callback function and found it's null