开发者

Eager loading nested association and scope

开发者 https://www.devze.com 2023-03-09 06:41 出处:网络
I\'m a beginner and it\'s hard to explain my problem: My models: class Skill has_many :categories has_many :positions, :through => :categories

I'm a beginner and it's hard to explain my problem:

My models:

class Skill  
  has_many :categories
  has_many :positions, :through => :categories
end

class Category
  belongs_to :skill
  has_many :positions  
end

class Position
  belongs_to :category
  has_one :skill, :through => :category    
end

I can successfully eager load everything, like this:

@skills = Skill.includes(:positions)

However sometimes I want to apply a scope on the Positions:

class Position
...
  scope :active, where(:hidden => false)
end

I wish I could do:

@skills = Skill.includes(:positions.active)

Instead, I apply the scope in the views,开发者_StackOverflow社区 but the eager loading doesn't work anymore:

<%= skill.positions.acitve ... %>

Is it possible to have both eager loading and scope?


You could use another association:

class Skill  
  has_many :categories
  has_many :positions, :through => :categories
  has_many :active_positions, :through => :categories
end

class Category
  belongs_to :skill
  has_many :positions  
  has_many :active_positions, :class_name => "Position", :conditions => {:hidden => false}
end

class Position
  belongs_to :category
  has_one :skill, :through => :category    
end

And then

@skills = Skill.includes(:active_positions)

But then you'll get two associations. If you ever use skill.positions, all the skill's positions will be loaded from the database. You should only use skill.active_positions.


Try this:

@skills = Skill.includes(:positions).where('position.active = TRUE')
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号