假設我有兩種模型:Course和ScheduledCourse。Rails 3.按關聯模型排序
該課程模型具有名稱屬性。
課程的has_many:排定課程 scheduled_courses:belongs_to的過程
courses
id | name
1 | biology
2 | history
3 | chemistry
4 | literature
scheduled_courses
id | course_id
1 | 2
2 | 4
3 | 1
4 | 2
我怎樣才能讓一個ActiveRecord查詢計劃的課程按字母順序排序?
試試這個:http://stackoverflow.com/questions/1530131/rails-order-using-a-has-many-belongs-to-relationship – luacassus 2012-04-26 15:04:38
你應該發佈你已經嘗試過的... – EricM 2012-04-26 15:09:53