Skip to content

Instantly share code, notes, and snippets.

@drewtempelmeyer
Created January 10, 2013 19:35
Show Gist options
  • Save drewtempelmeyer/4505091 to your computer and use it in GitHub Desktop.
Save drewtempelmeyer/4505091 to your computer and use it in GitHub Desktop.
User.limit(1).first # User Load (0.5ms) SELECT `users`.* FROM `users` WHERE `users`.`deleted_at` IS NULL LIMIT 1
User.first # User Load (0.6ms) SELECT `users`.* FROM `users` WHERE `users`.`deleted_at` IS NULL LIMIT 1
User.first.class.to_s # => User
User.limit(1).all.class.to_s # => Array
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment