anonymous-scope

    0

    1답변

    나는 다음과 같은 명명 된 범위가 있습니다 named_scope :find_all_that_match_tag, lambda { |tags| { :select => "articles.id, tags.name", :joins => :tags, :conditions => ["tags.name IN (?)",tags]}

    4

    1답변

    나는 당신이 나중에에 구축 할 수 있습니다 조건을 지정할 수 있도록 레일에서 명명 된 범위를 만들 수 있습니다 알고는 named_scope :active, :conditions => {:active => true} ... MyModel.active.find(...) 이 나중에까지 평가되지 않습니다 프록시 객체를 생성하여 작동합니다. 내가 알고 싶