Created
November 1, 2019 16:02
-
-
Save ihorkatkov/023b375f1bbf3cfe50e4268f0f997553 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, | |
where: ... # Here my where clause | |
select: {d, o} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment