Untitled
// Update the attributes on each related contact using postImage. foreach (Entity contact in contacts.Entities) { // Iterate over all attributes in postImage and update the corresponding attributes on the contact. foreach (var attribute in postImage.Attributes) { contact[attribute.Key] = postImage[attribute.Key]; }
Leave a Comment