Skip to content

Instantly share code, notes, and snippets.

@motephyr
Created August 10, 2017 11:09
Show Gist options
  • Save motephyr/9daa4b50aef9d7160b2f284182f40313 to your computer and use it in GitHub Desktop.
Save motephyr/9daa4b50aef9d7160b2f284182f40313 to your computer and use it in GitHub Desktop.
result = from(u in User, where: u.id == 1) |> Repo.one |> Repo.preload(:user_info)
result = from(u in User, where: u.id == 1, preload: [:user_info]) |> Repo.one
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment