Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

dynamics 365 update record c#

Entity recordToUpdate = service.Retrieve("contact", contactId, new ColumnSet(true));
recordToUpdate["parentcustomerid"] = new EntityReference("account", accountId);
service.Update(recordToUpdate);
 
PREVIOUS NEXT
Tagged: #dynamics #update #record
ADD COMMENT
Topic
Name
1+9 =