Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A little bit complicated of a query here. Three relevant tables: users, posts, and comments. The user has_many posts and comments, the posts belong_to the user and has_many comments, and the comments belong_to a user and a post. That said, I'm trying in Rails to, in my controller, find all the comments that a user has received on all his posts. I tried this:

@comments = Comment.where(:post_id.user => @user.id)

But that didn't really work out. This is probably a simple solution, help?

share|improve this question
This might help you to know you can and can't do :) guides.rubyonrails.org/active_record_querying.html – Anthony Alberto Aug 4 '12 at 4:49

2 Answers

up vote 2 down vote accepted

You have to join the posts table for that:

@comments = Comment.joins(:post).where(:posts => { :user_id => @user.id })
share|improve this answer
awesome, thanks. – user1152706 Aug 4 '12 at 4:47

You can also do something like:

@user = User.find(@user.id, :include => :comments)

<% @user.comments.each do |comment| %>
   <%= comment.id %> <br/>
   <%= comment.text %>
<% end %>
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.