SELECT Name FROM Customer
WHERE telephone IS NOT NULL
AND email IS NULL
AND TwitterId IS NULL
When parsing the above SQL script, the WHERE condition is evaluated as a CriteriaExpression, with the left part being "telephone" and the right part being "NOT NULL AND email IS NULL AND TwitterId IS NULL".
Thanks for the great library.