ConditionExpression operators and aggregation used in FetchXML while using c# for Microsoft Dynamics CRM 2013
This blog contains the whole list of COndition operators used in FetchXMl and the aggregation used in FetchXML while using C# Source: MSDN Here is a list of all ConditionalOPerator and the second table contains the list of aggregation used in FetchXML:: ConditionOperator FetchXML Operator Description BeginsWith like The string occurs at the beginning of another string. Between between The value is between two values. Contains like The string contains another string. DoesNotBeginWith not-like The string does not begin with another string. DoesNotContain not-like The string does not contain another string. DoesNotEndWith not-like The string does not end with another string. EndsWith like The string ends with another string. Equal eq The values are compared for equality. EqualBusinessId eq-businessid The value is equal to the specified business ID. EqualUserId eq-userid The value is equal to the specified user ID. EqualUserTe...