Hi,
I am retrieving a column set using RetrieveMultiple. It used to work before correctly but then I changed some project settings in visual studio and reverted them back to old ones. Since then code started behaving differently.
QueryExpression query = new QueryExpression { EntityName = "new_name", ColumnSet = new ColumnSet(new string[] { "new_firstname", "new_lastname", "new_language", "new_email", "new_primaryphone", "new_type", "new_state" }), Criteria = codeFilter }; EntityCollection records = _orgService.RetrieveMultiple(query);
On execution 'query' has all the 7 columns but then after RetrieveMultiple execution only 6 columns are getting assigned to 'records' entity collection.
Why would that happen?
Thanks for any help!
*This post is locked for comments