Untitled

 avatar
unknown
plain_text
a year ago
488 B
3
Indexable
 // 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