ConditionExpression condition1 = new ConditionExpression(); condition1.AttributeName = "modifiedon"; condition1.Operator = ConditionOperator.GreaterThan; condition1.Values = "createdon";
Is this possible, can you create a conditional query that compares two fields of the record, like you would
in this sql query example:
WHERE modifiedon > createdon
Thanks for any help or suggestions.