A relationship for the CRM Product entity has been created in the code I am working with.
Later in the code, we get:
invoiceItem["client_name"] = product.Name;
I know this works.
I am trying to do the following, immediately after that code:
invoiceItem["client_extendeddescription"] = product.GetAttributeValue<string>("client_extendeddescription");
Visual Studio Reports: "EntityReference does not contain definition GetAttributeValue and accessible extension method 'GetAttributeValue' could not be found"
If from the product entity I can get the name why can I not get a field value? I appreciate the help. I am new to the C#/Plugin development side so I hope this is not a stupid question.
Thanks,
Steve
*This post is locked for comments