Post.where (: comments.count> = 10)
Post.find(:all).select{|p| p.comments.count >= 10)
Post.where (: comments.author_id == current_user.id)
Post.find(:all).select{|p| p.comments.select{|c| c.author_id == current_user.id } }
Post.order (: comments.count)
Yikes, this one beats me.
Привет, мои два поста довольно тяжелы для SQL.Я знаю, что люди делают это более элегантно с
Post.find(:all, :conditions => blah blah blah..
Но я не уверен, как это выразить.К сожалению.