Skip to content

Instantly share code, notes, and snippets.

@ihorkatkov
Created November 1, 2019 16:02
Show Gist options
  • Save ihorkatkov/023b375f1bbf3cfe50e4268f0f997553 to your computer and use it in GitHub Desktop.
Save ihorkatkov/023b375f1bbf3cfe50e4268f0f997553 to your computer and use it in GitHub Desktop.
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