Hi,
i'm using XrmServiceToolkit.Rest.RetrieveMultiple to retrieve records of 'new_programcourseprerequisitesentity' entity , i want to only return one attribute which is 'new_failurethresholdgrade'. The problem is that records returned with all attributes.
here is my code:
var result = null;
XrmServiceToolkit.Rest.RetrieveMultiple('new_programcourseprerequisitesentitySet', '&select=new_failurethresholdgrade', function (r)
{
result = r;
}, nop, nop, false);
Any idea?