Skip to content

Instantly share code, notes, and snippets.

@dacort
Created November 18, 2009 23:35
Show Gist options
  • Save dacort/238386 to your computer and use it in GitHub Desktop.
Save dacort/238386 to your computer and use it in GitHub Desktop.
# Where u is a User object
irb(main):033:0> Tweet.all(:user => u)
=> []
irb(main):034:0> Tweet.all(:user_id => u.id)
=> []
irb(main):035:0> Tweet.all(:user_id => u._id)
=> [#<Tweet text:...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment