Created
November 1, 2019 16:05
-
-
Save ihorkatkov/c362436d1bba5a2c3707476982697d1c 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: in Order, on: o.id == d.order_id, | |
join: h in HistoryItem, on: h.delivery_id == d.id, | |
where: … # Here my where clause | |
select: {d, o, h} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment