Giter VIP home page Giter VIP logo

csvhelper.excel's Introduction

Build status

Csv Helper for Excel

CsvHelper for Excel is an extension that links 2 excellent libraries, CsvHelper and ClosedXml. It provides an implementation of ICsvParser and ICsvSerializer from CsvHelper that read and write to Excel using ClosedXml.

ExcelParser

ExcelParser implements ICsvParser and allows you to specify the path of the workbook, pass an instance of XLWorkbook that you have already loaded, or a specific instance of IXLWorksheet to use as the data source.

When the path is passed to the constructor then the workbook loading and disposal is handled by the parser. By default the first worksheet is used as the data source.

using (var reader = new CsvReader(new ExcelParser("path/to/file.xlsx")))
{
    var people = reader.GetRecords<Person>();
}

When an instance of XLWorkbook is passed to the constructor then disposal will not be handled by the parser. By default the first worksheet is used as the data source.

using (var workbook = new XLWorkbook("path/to/file.xlsx", XLEventTracking.Disabled))
{
    // do stuff with the workbook
    using (var reader = new CsvReader(new ExcelParser(workbook)))
    {
        var people = reader.GetRecords<Person>();
    }
    // do other stuff with workbook
}

When an instance of IXLWorksheet is passed to the constructor then disposal will not be handled by the parser and the worksheet will be used as the data source.

using (var workbook = new XLWorkbook("path/to/file.xlsx", XLEventTracking.Disabled))
{
    var worksheet = workbook.Worksheets().First(sheet => sheet.Name == "Folk");
    using (var reader = new CsvReader(new ExcelParser(worksheet)))
    {
        var people = reader.GetRecords<Person>();
    }
}

All constructor options have overloads allowing you to specify your own CsvConfiguration, otherwise the default is used.

ExcelSerializer

ExcelSerializer implements ICsvSerializer and, like ExcelParser, allows you to specify the path to which to (eventually) save the workbook, pass an instance of XLWorkbook that you have already created, or pass a specific instance of IXLWorksheet to use as the destination.

When the path is passed to the constructor the creation and disposal of both the workbook and worksheet (defaultly named "Export") as well as the saving of the workbook on dispose, is handled by the serialiser.

using (var writer = new CsvWriter(new ExcelSerializer("path/to/file.xlsx")))
{
    writer.WriteRecords(people);
}

When an instance of XLWorkbook is passed to the constructor the creation and disposal of a new worksheet (defaultly named "Export") is handled by the serialiser, but the workbook will not be saved.

using (var workbook = new XLWorkbook(XLEventTracking.Disabled))
{
    // do stuff with the workbook
    using (var writer = new CsvWriter(new ExcelSerializer(workbook)))
    {
        writer.WriteRecords(people);
    }
    // do other stuff with workbook
    workbook.SaveAs("path/to/file.xlsx");
}

When an instance of IXLWorksheet is passed to the constructor then the serialiser will not dispose or save anything.

using (var workbook = new XLWorkbook(XLEventTracking.Disabled))
{
    var worksheet = workbook.AddWorksheet("Folk");
    using (var writer = new CsvWriter(new ExcelSerializer(worksheet)))
    {
        writer.WriteRecords(people);
    }
    workbook.SaveAs("path/to/file.xlsx");
}

All constructor options have overloads allowing you to specify your own CsvConfiguration, otherwise the default is used.

csvhelper.excel's People

Contributors

christophano avatar

Watchers

James Cloos avatar Paul Doree avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.