vote up 0 vote down star

Following are the 1-to-M models:

class FotoGossip < ActiveRecord::Base
    has_many :uploads
    attr_accessible :published_at, ...
end 

class Upload < ActiveRecord::Base
    belongs_to :foto_gossip
end

Now I want the Uploads.all with the condition :published_at NOT NULL of the corresponding upload's parent model?

flag

39% accept rate

1 Answer

vote up 2 vote down check

Just add this to your Upload model:

named_scope :with_published_foto_gossip, :joins => :foto_gossip, :conditions => "foto_gossips.published_at IS NOT NULL"

then you can get all the uploads with published foto_gossip like this:

Upload.with_published_foto_gossip
link|flag
Thanks Milan, It works. – Millisami Nov 8 at 9:49
You're welcome. – Milan Novota Nov 8 at 11:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.