Last active
December 22, 2015 01:28
-
-
Save kristianfreeman/6396286 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user = User.where(name: "Michael Jordan") | |
user.class == User # => false | |
user.class == ActiveRecord::Relation # => true | |
user # => [#<User id: 1, name: "Michael Jordan", sport: "Basketball">] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment