私は2つのモデル、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
あなたが試したことを投稿してください... – EricM