# File lib/dm-types/csv.rb, line 23
      def self.dump(value, property)
        case value
          when Array  then CSV.generate { |csv| value.each { |row| csv << row } }
          when String then value
          else
            nil
        end
      end