Hello All,
I have retrieved one Entity record using XrmServiceToolkit. In this entity there is a lookup field(mentioned in filter) also get. Now i want to access particular properties of this Lookup like name, id, entityType ? How can i get all these? basically i think we use the following code to execute the query for Rest:
var result = XrmServiceToolkit.Soap.Retrieve(EntityName,EntityId,col);
and to Retrieve any field value we write the following code,
var x = result.attributes['fieldname'].value;
here, x can store normal values like single line, whole number etc but in my case the field is lookup
and i want to access the lookup properties?? If i simply write alert(x) then it shows the error because
x is referring to Another Record, and I want to simply get the name of that record??
*This post is locked for comments
I have the same question (0)