On Mar 19, 1:47 pm, Jonatas Paganini <rails-mailing-l...@andreas-
s.net> wrote:
> Hi, I have been using named_scopes and works great!
> but I need to get the sql conditions to send for my iReport =)
>
> when I do
>
> User.valid.proxy_options returns ok
>
> but
>
> User.valid.created_by('jonatas').proxy_options
>
> returns just proxy_options from last named scope
>
> if I put:
>
> (User.valid.created_by('jonatas')).proxy_options
>
> also returns just proxy_options from last named scope
Well in general in an activerecord method scope(:find) returns the
current scope for find operations, and it's no different here:
User.valid.created_by('jonatas')).scope(:find)
Fred
>
> so, how can I get proxy_options from nested named_scope's?
>
> how can I get sanitize sql for nested named_scope's?
>
> thx's
> --
> Posted viahttp://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---