I have two tables and want to LEFT JOIN them in the following SQL way:
FROM Table1
LEFT OUTER JOIN table2 ON (Table1.OtherField <> '' AND Table1.IdField = Table2.IdField)
In SQL I simply I can do it like this, but how can I do the same thing in a data entity?
I tried using range, but that obviously creates a WHERE clause and therefore all the rows where Table1.Otherfield are emtpty get filtered out...