I have one case where I don't know how made.
I have some tickets with one user by ticket. My objects are :
class Ticket
property :id, Serial
property :name, String
belongs_to :user
end
class User
property :id, Serial
property :name, String
has n, :tickets
end
If I want search a ticket with user name, i can do :
Ticket.all( 'user.name' => 'foo')
But If I want ordering my ticket by user.name I can't.
Ticket.all :order => 'user.name'
There are no way to do that ? because my user.id is not same order that
name.
Thanks for you help
--
Cyril Mougel
http://blog.shingara.fr
For me not. I have same issue and I check code. but actually nothing is
possible.
When have time, I want try to integrate it. But now I can't :(