Does anyone know if it's somehow possible to setup an alias for an ActiveRecord table join?
Something like:
User.find(:all, :alias => "Users as u", :joins => "Friends as f", :select => "u.id,f.name")
Any ideas?
|
Does anyone know if it's somehow possible to setup an alias for an ActiveRecord table join? Something like:
Any ideas? |
||||
|
|
|
Yes, but you need to include the 'ON' statement and the join statement if you overwrite the join.
|
||||
|
|