Getting proxy_options from named_scopes

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

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

On Mar 19, 1:47 pm, Jonatas P. <rails-mailing-l…@andreas-
s.net> wrote:

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

Thanks very much man!

Works rigth now!