目前正在查询带参数premium_amount_lower_range, premium_amount_upper_range, application_date_lower_range, application_date_upper_range, insurance_type_id
@filtered_quotes = current_user.insurance_subscribers.includes(:insurance_types).includes(:insurance_subscribers_types, :insurance_subscribers_types_carriers).
premium_amount(params[:dashboard][:premium_amount_lower_range], params[:dashboard][:premium_amount_upper_range]).
duration(params[:dashboard][:application_date_lower_range], params[:dashboard][:application_date_upper_range]).
insurance_type(params[:dashboard][:insurance_type_id])
但现在还需要根据自己的状态进行过滤。有问题。
我在insurance_subscribers
和insurance_subscribers_types_carriers
表中有状态列,两列都是枚举。
我尝试添加where子句,如
@filtered_quotes = current_user.insurance_subscribers.includes(:insurance_types).includes(:insurance_subscribers_types, :insurance_subscribers_types_carriers).
where("insurance_subscribers_types_carriers.status = 1")
# ...
这给了我错误PG::UndefinedTable: ERROR: missing FROM-clause entry for table "insurance_subscribers_types_carriers"
但是当我尝试做的时候
@filtered_quotes = current_user.insurance_subscribers.includes(:insurance_types).includes(:insurance_subscribers_types, :insurance_subscribers_types_carriers).
where(status: 1)
# ....
这将把where子句放在insurance_subscribers上。
尝试在上面的查询中添加一个简单的where子句WHERE insurance_subscribers_types_carriers.status = 1
但是在这个查询中遇到了很多麻烦。
协会
insurance_subscriber.rb
has_many :insurance_subscribers_types, dependent: :destroy
has_many :insurance_types, through: :insurance_subscribers_types
has_many :insurance_subscribers_types_carriers, through: :insurance_subscribers_types
insurance_types.rb
has_many :insurance_subscribers, through: :insurance_subscribers_types
has_many :insurance_subscribers_types
has_many :insurance_subscribers_types_carriers
insurance_subscriber_type.rb
belongs_to :insurance_subscriber
belongs_to :insurance_type
has_many :carriers, through: :insurance_subscribers_types_carriers
has_many :insurance_subscribers_types_carriers, dependent: :destroy
insurance_subscribers_types_carrier.rb
belongs_to :carrier
belongs_to :insurance_subscribers_type
答案 0 :(得分:3)
如果要在关联模型中添加queries
,首先需要加入它们。由于您有has_may :through
个关联,因此您可以按以下方式完成所需的操作:
InsuranceSubscriber.joins(insurance_subscriber_types: :insurance_subscribers_types_carriers)
.includes(:insurance_types, :insurance_subscribers_types, :insurance_subscribers_types_carriers)
.where("insurance_subscribers_types_carriers.status = ?", 1)
如您所见,您可以加入并引用您的关联,即使您拥有has_many :through
关联,如下所示joins(.joins(insurance_subscriber_types: :insurance_subscribers_types_carriers)
。
您将获得sql输出,如下所示:
InsuranceSubscriber Load (3.3ms) SELECT "insurance_subscribers".* FROM
"insurance_subscribers" INNER JOIN "insurance_subscriber_types" ON
"insurance_subscriber_types"."insurance_subscriber_id" =
"insurance_subscribers"."id" INNER JOIN "insurance_subscribers_types_carriers" ON
"insurance_subscribers_types_carriers"."insurance_subscriber_type_id" =
"insurance_subscriber_types"."id" WHERE (insurance_subscribers_types_carriers.status = 1)
我用模型结构复制并测试了你的问题,如:
PS:我对你的模型名称做了一些小改动,所以要小心。他们非常混乱,试图简化它们。
insurance_subscriber.rb
# == Schema Information
#
# Table name: insurance_subscribers
#
# id :integer not null, primary key
# name :string
# status :integer default("0")
# created_at :datetime not null
# updated_at :datetime not null
#
class InsuranceSubscriber < ActiveRecord::Base
has_many :insurance_subscriber_types, dependent: :destroy
has_many :insurance_types, through: :insurance_subscriber_types
has_many :insurance_subscribers_types_carriers, through: :insurance_subscriber_types
enum status: {active: 0, passive: 1}
end
insurance_subscriber_types.rb
# == Schema Information
#
# Table name: insurance_subscriber_types
#
# id :integer not null, primary key
# name :string
# insurance_subscriber_id :integer
# insurance_type_id :integer
# created_at :datetime not null
# updated_at :datetime not null
#
class InsuranceSubscriberType < ActiveRecord::Base
belongs_to :insurance_subscriber
belongs_to :insurance_type
has_many :insurance_subscribers_types_carriers, dependent: :destroy
has_many :carriers, through: :insurance_subscribers_types_carriers
end
insurance_subscribers_types_carriers.rb
# == Schema Information
#
# Table name: insurance_subscribers_types_carriers
#
# id :integer not null, primary key
# carrier_id :integer
# insurance_subscriber_type_id :integer
# status :integer default("0")
# created_at :datetime not null
# updated_at :datetime not null
#
class InsuranceSubscribersTypesCarrier < ActiveRecord::Base
belongs_to :carrier
belongs_to :insurance_subscriber_type
enum status: {active: 0, passive: 1}
end
insurance_types.rb
# == Schema Information
#
# Table name: insurance_types
#
# id :integer not null, primary key
# name :string
# created_at :datetime not null
# updated_at :datetime not null
#
class InsuranceType < ActiveRecord::Base
has_many :insurance_subscribers_types_carriers
has_many :insurance_subscribers_types_carriers
has_many :insurance_subscribers, through: :insurance_subscribers_types
end
答案 1 :(得分:0)
如果要在查询中使用包含的关联(insurance_subscribers_types_carriers),则必须添加&#34;引用&#34;否则insurance_subscribers_types_carriers将与主查询分开加载:
InsuranceSubscriber.includes(:insurance_subscribers_types_carriers)
.where("insurance_subscribers_types_carriers.status = ?", 1)
.references(:insurance_subscribers_types_carriers)