Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Users have one profile, and profiles belong to users.

I'm trying to make a query where searching a user list, and I can search the names which exist in the user's profiles.

Here is what I have so far:

@user_list = User.where(:company_id => current_user.company.id)
  .joins(:profile).where("profile.first_name like ?", "%#{params[:q]}%")

This doesn't work, but I'm not really sure where to go from here?

share|improve this question
please, no "doesn't work"s, show the error/wrong result/whatever – tokland Apr 3 '11 at 16:30

2 Answers

up vote 1 down vote accepted
  1. You didn't write the error message or the database table, but i'm guessing that as a rails convention, the table is called profiles and not profile
  2. You should scope by company instead of query by id in the user model

Together:

@user_list = current_user.company.users.
     joins(:profile).where("profiles.first_name like ?", "%#{params[:q]}%")
share|improve this answer
Perfect thanks! – Elliot Apr 3 '11 at 19:15

try User.includes(:profile) instead of joins, and check the resulting sql query in the log. If it does not work, show us the resulting sql.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.