Ruby Forum Ruby on Rails > acts_as_paranoid and :include

Posted by Ian Connor (Guest)
on 14.03.2006 11:34
(Received via mailing list)
Will the find from acts_as_paranoid filter down to an :include?

For instance

class parent
acts_as_paranoid
has_many: children
end

and

class child
acts_as_paranoid
belongs_to :parent
end

Then if you

Parent.find(:all, :include => children)

you will get all the children if they are deleted or not. I guess the 
find
that filters out the deleted_at is null does not filter down to the 
includes
like this.
Posted by Rick Olson (Guest)
on 14.03.2006 16:36
(Received via mailing list)
On 3/14/06, Ian Connor <ian.connor@gmail.com> wrote:
>
> that filters out the deleted_at is null does not filter down to the includes
> like this.
>
> --
> Regards,
> Ian Connor

Nope.

has_many :children, :conditions => "deleted_at IS NULL"


--
Rick Olson
http://techno-weenie.net
Posted by Ian Connor (Guest)
on 16.03.2006 10:45
(Received via mailing list)
thanks - that would certain fix it :)