The clone logic is now working, however, when we go to save the cloned entity, the fields are null. The entity fields are as expected before saving, but when they are saved all the fields (except key fields) are null.
For example:
Console.WriteLine("User = " + clonedEntity.UserName); <-- Returns 'User = Josh'
adapter.Save(clonedEntity, true);
Console.WriteLine("User Name = " + clonedEntity.UserName); <-- Returns 'User = '
What are we doing wrong?
Thanks,
Josh Lindenmuth