Skip to content

Instantly share code, notes, and snippets.

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