LLBLGenPro v4.2
var qf = new QueryFactory();
var query = qf.Keyword
.OrderBy(KeywordFields.Phrase | SortOperator.Ascending)
.Select(
KeywordFields.ID,
KeywordFields.Phrase,
qf.ClassificationToKeyword.CorrelatedOver(ClassificationToKeywordFields.KeywordID == KeywordFields.ID).CountRow().As("ClassificationCount")
);
ClassificationToKeywordFields is a simple join table holding KeywordID and ClassificationID and the above query works fine.
What I now want to do is keep the above CountRow() line but add another line which also uses the "qf.ClassificationToKeyword.CorrelatedOver(ClassificationToKeywordFields.KeywordID == KeywordFields.ID)" and counts where the ClassificationToKeywordFields.ClassificationIDs returned are used in another table. I can't work out how to do it or whether it is possible.
Something like
qf.Resource
.Where(ResourceFields.ClassificationID.In(
qf.ClassificationToKeyword.CorrelatedOver(ClassificationToKeywordFields.KeywordID == KeywordFields.ID).Select(ResourceFields.ID))
).CountRow()