# File lib/dm-core/collection.rb, line 493
    def respond_to?(method, include_private = false)
      super || model.public_methods(false).map { |m| m.to_s }.include?(method.to_s) || relationships.has_key?(method)
    end