We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@scenes = Scene.includes(:movie) creates a list of scene objects which includes the movie data.. so you can do @scenes.movie.first.movie.name
@scenes = Scene.includes(:movie)
@scenes.movie.first.movie.name
Category.joins(:posts).where(posts.comment = ???) This only pulls information back from Category but allows you to query stuff from the posts table.
Category.joins(:posts).where(posts.comment = ???)
There was an error while loading. Please reload this page.