Hi,
I am trying to retrieve the data using RetrieveMultiple method. I am able to retrieve all the columns except one date time filed that one of our team mate created. Can you please confirm whether we need to apply any null conditions at the time of retrieving the data in case date field contains null values in system? If so how can we do that? I just wrote a simple straight forward query to retrieve the data I can see most of the columns except one date field that I need the value of.
QueryExpression qe = new QueryExpression();
qe.EntityName = "opportunity";
if (Columns == null)
qe.ColumnSet = new ColumnSet(true);
else
qe.ColumnSet = new ColumnSet(Columns);
qe.PageInfo.PagingCookie = "";
qe.PageInfo.PageNumber = PageNum;
qe.PageInfo.Count = 2500;
_service.RetrieveMultiple(qe);
*This post is locked for comments