Last active
November 25, 2015 17:01
-
-
Save chippinkston/48af01672c28389b44e7 to your computer and use it in GitHub Desktop.
ORM In Query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tickets = ormExecuteQuery(" | |
select | |
tic | |
from | |
tickets as tic | |
join | |
tic.status as status | |
where | |
status.name IN (:status) | |
" | |
, {status = ['New','On Hold']} | |
, false | |
, {maxresults=20, offset=0} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment