Ok, I am almost done but I am running into one problem. I am trying to map a FieldCompareSetPredicate to my message object and I can't find in the graph where the PredicateExpression is that I set. Here is my code snippet:
bucket.PredicateExpression.AddWithAnd(new FieldCompareSetPredicate(
EntityFieldFactory.Create(TaskFieldIndex.TaskID), null,
EntityFieldFactory.Create(Label_TaskFieldIndex.TaskID),
null,
SetOperator.In,
new PredicateExpression(Label_TaskFields.LabelID == 5))
);
** Nevermind, Got it. **
I need to pull out the '5' value.
Thanks