c# – 如何使用CsvHelper将选定的类字段写入CSV?

前端之家收集整理的这篇文章主要介绍了c# – 如何使用CsvHelper将选定的类字段写入CSV?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用 CsvHelper读取和写入CSV文件,这是伟大的,但我不明白如何只写选择的类型字段.

说我们有

using CsvHelper.Configuration;

namespace Project
{
    public class DataView
    {
        [CsvField(Name = "N")]
        public string ElementId { get; private set; }

        [CsvField(Name = "Quantity")]
        public double ResultQuantity { get; private set; }

        public DataView(string id,double result)
        {
            ElementId = id;
            ResultQuantity = result;
        }
    }
}

我们想从我们目前通过以下类似的生成的CSV文件中排除“Quantity”CsvField:

using (var myStream = saveFileDialog1.OpenFile())
{
    using (var writer = new CsvWriter(new StreamWriter(myStream)))
    {
        writer.Configuration.Delimiter = '\t';
        writer.WriteHeader(typeof(ResultView));
        _researchResults.ForEach(writer.WriteRecord);
    }
}

我可以用什么来动态地从CSV中排除类型字段?

如果有必要,我们可以处理生成文件,但我不知道如何使用CsvHelper删除整个CSV列.

解决方法

你可以这样做:
using (var myStream = saveFileDialog1.OpenFile())
{
    using (var writer = new CsvWriter(new StreamWriter(myStream)))
    {
        writer.Configuration.AttributeMapping(typeof(DataView)); // Creates the CSV property mapping
        writer.Configuration.Properties.RemoveAt(1); // Removes the property at the position 1
        writer.Configuration.Delimiter = "\t";
        writer.WriteHeader(typeof(DataView));
        _researchResults.ForEach(writer.WriteRecord);
    }
}

我们强制创建属性映射,然后修改它,动态删除列.

原文链接:https://www.f2er.com/csharp/96716.html

猜你在找的C#相关文章