我正在尝试学习 Rails [通过遵循 coursera 中的 SAAS 课程] 并使用 ActiveRecord 处理简单的电影表。
我想显示所有按标题排序的电影。我希望它不区分大小写。
我试过这样做:
Movie.all(:conditions => ["lower(title) = ?", title.downcase],:order => "title DESC")
=>undefined local variable or method `title' for #<MoviesController:0xb4da9a8>
我认为它不识别 lower(title) 。
这是实现不区分大小写排序的最佳方法吗?
谢谢!