Well we do it with SQL every day, but we just want to use NotORM for
some project, that's why I am asking.
I am talking about queries like this:
SELECT j.*, c.client FROM
recruits.jobs AS j
LEFT JOIN system.clients AS c
ON
c.id=j.client_id
How I can do this in NotORM, considering jobs resides in database
recruites, clients resides in database system.
Any idea?