I have a scenario which seems to be should be something addressed on the model side of things but can't figure out a combination of Activerecord methods that works. The relevant parts of my db are as below:
Part:
id
part_id
created_at
...
Parttest:
id
part_id
pass (boolean)
created_at
A Part can have many Parttests and a Parttest belongs to a single part (setup in the relevant models as has_many and belongs_to).
In it's life - a part can be tested many times and can pass, fail, pass etc. Using rails / activerecord I would like to retrieve the recordset of Parts where the last (most recent) Parttest is a pass. Earlier records of parttest should not be taken into consideration and are for historical use only.
I've tried nested selects without much success. I could always code the logic in the controller to check each Part object in Part.all.each and push those into an array but this doesn't feel like the right way to do it. All help much appreciated :)
Edit: Misread your post, you want to do something like this reference
Part.joins(:parttests).where(parttests: {pass: true})
will give you all parts who have passing teststry
Part.joins(:parttests).last.where(parttests: {pass: true})