How do I build a query in Subsonic that of this format
(ConditionA OR ConditionB) AND ConditionC
Iv tried various approaches but I cant seem to get the desired result.
Here is one thing i tired:
Query q = Challenge.CreateQuery();
q.WHERE(Challenge.Columns.ChallengeeKey, playerKey)
.OR(Challenge.Columns.ChallengerKey, playerKey);
q.AND(Challenge.Columns.Complete, false);