Anyone know why this does not work:
try{
Opportunity currentRecord = entity.ToEntity<Opportunity>();
var CustomerName = currentRecord.CustomerId.Name;
if (CustomerName != null)
{
currentRecord.Name = CustomerName;
}
}
It is a simple plugin that takes the name of the lookup and populates the topic with it?