# File lib/dm-types/csv.rb, line 14
      def self.load(value, property)
        case value
          when String then CSV.parse(value)
          when Array  then value
          else
            nil
        end
      end