Skip to content

Instantly share code, notes, and snippets.

@mrbrdo
Last active September 28, 2016 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrbrdo/6987758 to your computer and use it in GitHub Desktop.
Save mrbrdo/6987758 to your computer and use it in GitHub Desktop.
# verbose, flexible version (specify which columns to join on)
Album.left_join(:artists, artist_id: :id)
# association "automatic" version (automatically determines which column to join on based on association on the model)
Album.association_left_join(:artists)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment