我正在使用一种工具来同步CRM和其他应用程序之间的数据。 现在我必须从EntityReference中删除该值。我正在尝试这种方式:
contact.ParentCustomerId = null;
但它不起作用。当我通过浏览器访问CRM时,这并不会给我带来任何错误。 我也试过这种方式:
contact.ParentCustomerId = new EntityReference(Crm.Context.Account.EntityLogicalName, Guid.Empty);
但是这给了我一个运行时错误。
我该如何解决?谢谢
更新:
Crm.Context.Contact contatto = ContattiTOA.Transform(c, account); //Inside the transform you can see that line of code I posted before..
var entityToUpdate = this._context
.ContactSet
.Where(cont => cont.new_SIP_id == contatto.new_SIP_id || cont.Id == contatto.Id)
.First();
if (entityToUpdate.new_SynchronizewithSIP.HasValue && entityToUpdate.new_SynchronizewithSIP.Value == true)
{
contatto.Id = entityToUpdate.Id;
contatto.OwnerId = entityToUpdate.OwnerId;
contatto.EntityState = EntityState.Changed;
request = new UpdateRequest { Target = contatto };
}
requests.Requests.Add(request);
ExecuteMultipleResponse responses = (ExecuteMultipleResponse)this._context.Execute(requests);
foreach (var responseItem in responses.Responses)
{
if (responseItem.Fault != null)
{
... // I never fall in here
}
}