Skip to content

Instantly share code, notes, and snippets.

@pinzolo
Last active November 7, 2015 03:34
Show Gist options
  • Save pinzolo/550ae8a7e711c6ce9514 to your computer and use it in GitHub Desktop.
Save pinzolo/550ae8a7e711c6ce9514 to your computer and use it in GitHub Desktop.
# Rails3
class Course < ActiveRecord::Base
has_many :students, order: :name, include: [:parents, :brothers], dependent: :destroy
end
# Rails4
class Course < ActiveRecord::Base
has_many :students, ->{ order(:name).includes(:parents, :brothers) }, dependent: :destroy
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment