Untitled
unknown
plain_text
2 years ago
488 B
14
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