我为系统实体创建了一个自定义字段。 如何通过后期绑定通过XRM Web服务访问属性值?
我正在使用此代码,但它为我提供了EntityReference
个对象:
Entity objCase = service.Retrieve("incident", new Guid(Request.QueryString["EntityID"]), attributes);
string strValue = objCase.Attributes["new_papid"]).ToString();
答案 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;