Hi,
I have assigned an expression to a field and given the field an alias like this...
fields.DefineField(JobFieldIndex.JobBatchId, 5, "KeywordRanking");
IExpression keywordExpression = new CaseLikeExpression(JobFields.JobTitle, "hello");
fields[5].ExpressionToApply = keywordExpression;
Now, how do I filter on the alias? I tried this but the error suggests the framework expects the alias to refer to a table.
bucket.PredicateExpression.Add(JobFields.JobBatchId.SetObjectAlias("KeywordRanking") > 0);
Cheers, Ian.