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