Created
November 1, 2019 16:06
-
-
Save ihorkatkov/49e9bab05dc9d932dd8c32ef1f5c725d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from d in Delivery, | |
join: o in Order, on: o.id == d.order_id, | |
join: h in HistoryItem, on: h.delivery_id == d.id, | |
preload: [history_items: h, order: o], | |
where: … # Here my where clause | |
select: d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment