Ruby on Rails Wednesday, April 25, 2012

Let's say I have a model called User. User has two attributes or table
columns: id, username

By using the code below I can check that there is a username "Tom" and
return 1 ifthere is and 0 if there is not

User.find_by_username("Tom")? 1 : 0



How would I find out Tom's corresponding id?



For example I'm looking for something along the lines of:
User.find_by_username("Tom").id

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment