获取rails查询中has_many关联的计数



我有两个modelPost和' Comment'.

Post has_may comments .

查询:我想得到的评论的最大计数在这篇文章

这应该由rail查询完成

@post = Post.
  joins(:comments).
  select('posts.*, count(comments.id) as comment_count').
  group("posts.id").
  first

相关内容

  • 没有找到相关文章

最新更新