Hello everyone,
I'm making a plugin and one of the steps is to set the value of "cms_content" attribute of type multiple line text in "contractAgreementClause" entity from attribute "cms_content" of the same type in "Clause" entity .
I'm using the .Attributes.Add method but not sure how to fill it's parameters
This is the code I wrote but it only returns the logical name of the field and not it's content/value
contractAgreementClauseRecord.Attributes.Add(contractAgreementClauseEntity.contractAgreementClausesContent, clauseEntity.content);
Thanks in advance,
Rand