• B
    Accept belongs_to assoc. keys in ActiveRecord queries · 3da275c4
    beerlington 提交于
    Allows you to specify the model association key in a belongs_to
    relationship instead of the foreign key.
    
    The following queries are now equivalent:
    
    Post.where(:author_id => Author.first)
    Post.where(:author => Author.first)
    
    PriceEstimate.where(:estimate_of_type => 'Treasure', :estimate_of_id => treasure)
    PriceEstimate.where(:estimate_of => treasure)
    3da275c4
query_methods.rb 25.6 KB