Namedscoped

  class Picture < ActiveRecord::Base
    has_many :most_recent_comments, :class_name => 'Comment', :order => 'id DESC', :limit => 10
  end

  Picture.find(:first, :include => :most_recent_comments).most_recent_comments # => returns all associated comments.

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