ActiveRecord - 在连接模型中查找具有共享属性的所有对象

Are*_*rel 6 ruby activerecord

我有三个型号

class Boat < ActiveRecord::Base
  belongs_to  :captain
  has_many    :boat_classifications
  has_many    :classifications, through: :boat_classifications
end

class Classification < ActiveRecord::Base
  has_many :boat_classifications
  has_many :boats, through: :boat_classifications
end

class BoatClassification < ActiveRecord::Base
  belongs_to :boat
  belongs_to :classification
end
Run Code Online (Sandbox Code Playgroud)

我正在尝试编写一个简单的ActiveRecord查询来查找所有类型帆船的船只.就像是Boat.where(classifications: "Sailboat")

bac*_*rhh 3

我认为这可行:

Boat.joins(:classifications).where(classifications: { name: 'Sailboat' }) # name or whatever field contains Sailboat
Run Code Online (Sandbox Code Playgroud)

生成此查询:

SELECT `boats`.* FROM `boats` INNER JOIN `boat_classifications` ON `boat_classifications`.`boat_id` = `boats`.`id` INNER JOIN `classifications` ON `classifications`.`id` = `boat_classifications`.`classification_id` WHERE `classification`.`name` = 'Sailboat'
Run Code Online (Sandbox Code Playgroud)