Hi All,
In my plugin code I am using the following:
RetrieveMultipleRequest retreiveMultipleRequest = new RetrieveMultipleRequest()
{
Query = new FetchExpression(filterString.Replace("XXXXX", parentRecordId.ToString()))
};
RetrieveMultipleResponse Retriveresp = (RetrieveMultipleResponse)service.Execute(retreiveMultipleRequest);
Code review tool is highlighting to use service.RetreiveMultiple()
Wanted to understand if there's any difference between the two?
*This post is locked for comments