Skip to content

Instantly share code, notes, and snippets.

@rails
Created December 28, 2009 02:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save rails/264500 to your computer and use it in GitHub Desktop.
Save rails/264500 to your computer and use it in GitHub Desktop.
products = Product.where("price = 100").limit(5) # No query executed yet
products = products.order("created_at DESC") # Adding to the query, still no execution
products.each { |product| puts product.price } # That's when the SQL query is actually fired
class Product < ActiveRecord::Base
named_scope :pricey, where("price > 100")
named_scope :latest, order("created_at DESC").limit(10)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment