0
0

More than 3 years have passed since last update.

【Rails】 関連モデル先の条件で検索する方法(内部結合)

Last updated at Posted at 2020-03-14

関連モデル先の条件で検索する方法

すでにたくさんの記事が出ていますが、自分がよく使うものを忘れないようにメモしました。

User.joins(:posts).includes(:posts).where(posts: { name: 'test1' })

# or

User.eager_load(:posts).where("posts.name": 'test1')

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0