where
oczekuje rzeczywistej nazwy tabeli, po prostu wstawia ją do SQL:
Article.where(whatever: {you: 'want'}).to_sql
=> "SELECT `articles`.* FROM `articles` WHERE `whatever`.`you` = 'want'"
Możesz więc użyć:
Measurement.joins(:examination).where(test_structures: { year: 2016, month: 5 })
Ale to nie jest dobre
Następnie polegasz na nazwie tabeli, podczas gdy Model powinien abstrahować takie rzeczy. Możesz użyć merge
:
Measurement.joins(:examination).merge(TestStructure.where(year: 2016, month: 5))