published_pages
. नामक एक नई संबद्धता जोड़ें (आपके वर्तमान संघों के अलावा)
class Category
has_many :children, :class_name => "Category",
:foreign_key => "parent_id"
has_many :published_pages, :class_name => "Page",
:conditions => { :is_published => true }
end
अब आप सभी श्रेणियां इस प्रकार प्राप्त कर सकते हैं:
self.categories.includes(:children, :published_pages)
यदि आप यह जानने में रुचि रखते हैं कि आपके दृष्टिकोण ने काम क्यों नहीं किया, तो रेल्स दस्तावेज़ीकरण<पढ़ें। /ए> (Eager loading of associations
. के बाद 10-15 पंक्तियों को स्क्रॉल करें खंड)। मैंने नीचे प्रासंगिक स्निपेट शामिल किया है:
किसी संघ की फ़िल्टर की गई पंक्तियों को लोड करने के लिए, शर्तों के साथ संबद्धता का उपयोग करें:
class Post < ActiveRecord::Base
has_many :approved_comments, :class_name => 'Comment',
:conditions => ['approved = ?', true]
end
Post.find(:all, :include => :approved_comments)