Hi all,
below is my code where i'm trying to retrieve a record with all the fields using query expression based on the condition.. the issue is i'm getting only those attributes that contains data in the collection 'ec' where i want all the attributes i.e contains or does not contains data.. please let me know how i can resolve this issue.
QueryExpression queryPrincipal = new QueryExpression("contact");
ColumnSet col = new ColumnSet(true);
queryPrincipal.ColumnSet = col;
queryPrincipal.Criteria.AddCondition("new_customerid", ConditionOperator.Equal, 600);
EntityCollection ec = _serviceProxy.RetrieveMultiple(queryPrincipal);
*This post is locked for comments
I have the same question (0)