CsvClassMap not found error in visual studio 2015

牧云@^-^@ 提交于 2020-07-18 05:25:26

问题


I am trying to use CsvHelper library in one of my projects. its just console application.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CsvHelper;
using System.IO;
using Newtonsoft.Json;
using CsvHelper.TypeConversion;


namespace csvtest4
{
    class Program
    {
        static void Main(string[] args)
        {
            List<string> result = new List<string>();
            string value;
            using (TextReader fileReader = File.OpenText("list.csv"))
            {
                var csv = new CsvReader(fileReader);
                csv.Configuration.HasHeaderRecord = true;
                csv.Configuration.RegisterClassMap<CustomClassMap>();
                while (csv.Read())
                {
                    for (int i = 0; csv.TryGetField<string>(i, out value); i++)
                    {
                        result.Add(value);
                    }
                }

               var json = JsonConvert.SerializeObject(result);
                Console.WriteLine(json.ToString());
            }

        }

    }

    public class CustomClassMap : CsvClassMap<TestModel>
    {
        public CustomClassMap()
        {
            Map(m => m.StringProperty).Index(0);
            Map(m => m.GuidProperty).Index(1);
            Map(m => m.IntProperty).Index(2).TypeConverter<MyCustomTypeConverter>();
        }
    }
}

Not sure, what I am missing but my vs2015 keeps complaining about CsvClassMap its saying type or namespace not found, are you missing directives. Also, it's not recognizing map function either

I think I added required namespace as other CsvHelper function working fine


回答1:


CsvClassMap is no longer in the latest versions of CsvHelper.

Use ClassMap<Model> instead




回答2:


CsvClassMap is in namespace CsvHelper.Configuration.

If you put your cursor on CsvClassMap and hit Ctrl+., it should pull up a menu to resolve the missing reference.



来源:https://stackoverflow.com/questions/44313515/csvclassmap-not-found-error-in-visual-studio-2015

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!