Hi,
I have the following Rails definition:
Class Book string title has_many readings has_many users, :through => :readings
Class Reader int rating belongs_to :book belongs_to :user
Class User has_many readings has_many books, through => :readings
No I want to query like this:
Give me all readings ratings for user A that have book.title = "test"
Could you help me? Thanks!