Dynamics CRM获取扩展属性

时间:2013-04-05 08:37:07

标签: dynamics-crm-2011 dynamics-crm

我为系统实体创建了一个自定义字段。 如何通过后期绑定通过XRM Web服务访问属性值?

我正在使用此代码,但它为我提供了EntityReference个对象:

Entity objCase = service.Retrieve("incident", new Guid(Request.QueryString["EntityID"]), attributes);
string strValue = objCase.Attributes["new_papid"]).ToString();

1 个答案:

答案 0 :(得分:3)

您正在检索查找值,在这种情况下,您需要先转换为实体引用

Entity objCase = service.Retrieve("incident", new Guid(Request.QueryString["EntityID"]), attributes);
EntityReference pap = (EntityReference)objCase.Attributes["new_papid"];
Guid papId = pap.Id; // ID of the record;
string papName = pap.Name; // Primary attribute of the entity;