has_many 中,find_sql的小技巧

阅读更多
大多时候,rails提供的对象关系方法:has_many,belongs_to,已经很好用了。但有时需要自己定制一些查询,比如:某个分类下的所有书籍(包含子分类)
class BookCategory < ActiveRecord::Base
  has_many :books,:foreign_key => "category_id"
  has_many :all_books,:class_name=>"Book" , :finder_sql =>"
  	select * from #{Book.table_name}
  	where category_id between #{id}.00 and #{id}.99"

然后执行,发现错误:
warning: Object#id will be deprecated; use Object#object_id

在这里,由于find_sql中的字符串所处环境为Class,故#{self.id}调用的是Class.id,而我们想要的是BookCategory的对象方法!
这个问题rails自然考虑到了,仔细读读doc,你会发现,find_sql,在文档中用的是“单引号”:  ''
于是问题迎刃而解

你可能感兴趣的:(SQL,Rails,ActiveRecord)