Untitled
Anonymous
plain_text
02/02/2024 12:13 PM
652 B
22
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];
}Editor is loading...
Leave a Comment