Is there some additional logic performed by Associate() operation? I want to programmatically copy a lot of data from one Dynamics CRM instance to another one. And I suppose it would be simpler to make plain copies of rows (starting from the root objects in order to avoid breaking constraints).
And furthermore, is it possible to clone systemuser and business units instances (rows), too?
Thank you in advance!
PS: by cloning a row (using OrganizationServiceProxy), I mean:
- fetch all attributes of a row (from Dynamics CRM 1)
- e = new entity(), set all attributes (including id), then service.create(e) (on Dynamics CRM 2)