Not able to perform Filter on Dynamics CRM “Opportunity” transaction type with estimatedclosedate
问题 I am using QueryExpression to generate the filter for the Dynamics crm filters and then passing that to the my CRM made service to retrieve the result. QueryExpression queryCRM = new QueryExpression { EntityName = SourceID, ColumnSet = new ColumnSet(FieldSet), Criteria = new FilterExpression() }; and then queryCRM.Criteria.AddCondition(strFilterColumnName,ConditionOperator.On , strFilterValue); Here i am not able to fetch the result can anybody help me to figure out the issue? It doesn't work