通过has_one关联进行排序

时间:2011-08-28 02:06:14

标签: ruby-on-rails-3 activerecord

我有两种类型的记录:Person和PersonDetail。

每个人都有__ PersonDetail。

我想根据PersonDetail中的字段订购People。我该怎么做?

1 个答案:

答案 0 :(得分:0)

试试这个:

Person.joins(:person_detail).order('person_details.detail_field')