I have the following code:
@posts = Post.joins(:user).joins(:blog).select
which is meant to find all posts and return them and the associat
Use eager_load:
eager_load
@posts = Post.eager_load(:user)