# File lib/active_record/relation/finder_methods.rb, line 374
    def find_first
      if loaded?
        @records.first
      else
        @first ||= limit(1).to_a[0]
      end
    end