CsvHelper.Excel.EPPlus4
28.0.0
See the version list below for details.
dotnet add package CsvHelper.Excel.EPPlus4 --version 28.0.0
NuGet\Install-Package CsvHelper.Excel.EPPlus4 -Version 28.0.0
<PackageReference Include="CsvHelper.Excel.EPPlus4" Version="28.0.0" />
paket add CsvHelper.Excel.EPPlus4 --version 28.0.0
#r "nuget: CsvHelper.Excel.EPPlus4, 28.0.0"
// Install CsvHelper.Excel.EPPlus4 as a Cake Addin #addin nuget:?package=CsvHelper.Excel.EPPlus4&version=28.0.0 // Install CsvHelper.Excel.EPPlus4 as a Cake Tool #tool nuget:?package=CsvHelper.Excel.EPPlus4&version=28.0.0
CSV Helper for Excel (using EPPlus)
This project has been forked from https://github.com/christophano/CsvHelper.Excel and https://github.com/youngcm2/CsvHelper.Excel and heavily modified; primarily so that it can be used with EPPlus instead of ClosedXml, because EPPlus supports encrypted/password-protected Excel documents.
CsvHelper for Excel is an extension that links two excellent libraries: CsvHelper and EPPlus.
It provides implementations of IParser
and IWriter
from CsvHelper that read and write to Excel using EPPlus.
If you need to parse or write to a password-protected Excel document you will need to create an instance of ExcelPackage
yourself (e.g. new ExcelPackage("file.xlsx", password)
) and use one of the constructor overloads described below which take that as a parameter.
Setup
You have a choice of two packages, possibly depending on your licensing requirements:
- CsvHelper.Excel.EPPlus depends on EPPlus 6. This version of EPPlus has a Polyform Noncommercial license or requires you to obtain a commercial license from EPPlus Software: https://www.epplussoftware.com/LicenseOverview
- CsvHelper.Excel.EPPlus4 depends on EPPlus 4. This version of EPPlus is LGPL licensed. Consider this version if the other one is not available for your use.
Install the appropriate package from NuGet.org into your project. E.g.:
dotnet add package CsvHelper.Excel.EPPlus
Or using the Package Manager Console with the following command:
PM> Install-Package CsvHelper.Excel.EPPlus
Using ExcelParser
ExcelParser
implements IParser
and allows you to specify the path of the Excel package, pass an instance of ExcelPackage
, ExcelWorkbook
, ExcelWorksheet
, ExcelRange
or a Stream
that you have already loaded to use as the data source.
All constructor overloads have an optional parameter allowing you to specify your own CsvConfiguration
, otherwise the default is used.
Explaining each of the constructors:
new ExcelParser(string path, string sheetName = null, CsvConfiguration configuration = null)
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, though you can specify a particular worksheet using the sheetName parameter.
using var reader = new CsvReader(new ExcelParser("path/to/file.xlsx"));
var people = reader.GetRecords<Person>();
new ExcelParser(Stream stream, string sheetName = null, CsvConfiguration configuration = null)
When an instance of Stream
is passed to the constructor then disposal will not be handled by the parser unless an instance of CsvConfiguration
with its LeaveOpen
property set to false
is also passed. By default the first worksheet is used as the data source, though you can specify a particular worksheet using the sheetName parameter.
var bytes = File.ReadAllBytes("path/to/file.xlsx");
using var stream = new MemoryStream(bytes);
using var parser = new ExcelParser(stream);
using var reader = new CsvReader(parser);
var people = reader.GetRecords<Person>();
// do other stuff with workbook
new ExcelParser(ExcelPackage package, string sheetName = null, CsvConfiguration configuration = null)
When an instance of ExcelPackage
is passed to the constructor then disposal will not be handled by the parser unless an instance of CsvConfiguration
with its LeaveOpen
property set to false
is also passed. By default the first worksheet is used as the data source, though you can specify a particular worksheet using the sheetName parameter.
using var package = new ExcelPackage("path/to/file.xlsx");
// do stuff with the package
using var reader = new CsvReader(new ExcelParser(package));
var people = reader.GetRecords<Person>();
// do other stuff with workbook
new ExcelParser(ExcelWorkbook workbook, string sheetName = null, CsvConfiguration configuration = null)
When an instance of ExcelWorkbook
is passed to the constructor then disposal will not be handled by the parser unless an instance of CsvConfiguration
with its LeaveOpen
property set to false
is also passed. By default the first worksheet is used as the data source, though you can specify a particular worksheet using the sheetName parameter.
using var package = new ExcelPackage("path/to/file.xlsx");
// do stuff with the package
using var reader = new CsvReader(new ExcelParser(package.Workbook));
var people = reader.GetRecords<Person>();
// do other stuff with workbook
new ExcelParser(ExcelWorksheet worksheet, CsvConfiguration configuration = null)
When an instance of ExcelWorksheet
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 package = new ExcelPackage("path/to/file.xlsx");
var worksheet = package.Workbook.Worksheets.First(sheet => sheet.Name == "Folk");
using var reader = new CsvReader(new ExcelParser(worksheet));
var people = reader.GetRecords<Person>();
new ExcelParser(ExcelRange range, CsvConfiguration configuration = null)
When an instance of ExcelRange
is passed to the constructor then disposal will not be handled by the parser and the range will be used as the data source. This overload allows you to restrict the parsing to a specific range of cells within an Excel worksheet.
using var package = new ExcelPackage("path/to/file.xlsx");
var worksheet = package.Workbook.Worksheets.First(sheet => sheet.Name == "Folk");
using var reader = new CsvReader(new ExcelParser(worksheet.Cells[2, 5, 400, 33]));
var people = reader.GetRecords<Person>();
Using ExcelWriter
ExcelWriter
implements IWriter
and, like ExcelParser
, allows you to specify the path to (eventually) save the workbook, pass an instance of ExcelPackage
that you have already created, or pass a specific instance of ExcelWorksheet
, ExcelRange
or Stream
to use as the destination.
All constructor options have overloads allowing you to specify your own CsvConfiguration
, otherwise the default is used.
new ExcelWriter(string path, string sheetName = "Export", CsvConfiguration configuration = null)
When the path is passed to the constructor the writer manages the creation & disposal of the workbook and worksheet (named "Export" by default). The workbook is saved only when the writer is disposed.
using var writer = new CsvWriter(new ExcelWriter("path/to/file.xlsx"));
writer.WriteRecords(people);
new ExcelWriter(Stream stream, string sheetName = "Export", CsvConfiguration configuration = null)
When an instance of Stream
is passed to the constructor the writer manages the creation & disposal of the workbook and worksheet (named "Export" by default). The workbook is saved only when the writer is disposed. As the stream is an external dependency however, it will not be automatically disposed by the writer's disposal unless an instance of CsvConfiguration
with its LeaveOpen
property set to false
is also passed.
using var stream = new MemoryStream();
using var serialiser = new ExcelWriter(stream);
using var writer = new CsvWriter(serialiser);
writer.WriteRecords(people);
//other stuff
var bytes = stream.ToArray();
new ExcelWriter(ExcelPackage package, string sheetName = "Export", CsvConfiguration configuration = null)
When an instance of ExcelPackage
is passed to the constructor, it will not be automatically disposed by the writer's disposal unless an instance of CsvConfiguration
with its LeaveOpen
property set to false
is also passed. The workbook is saved only when the writer is disposed or the consumer manually calls package.Save()
or package.SaveAs(...)
.
By default, records are written into a worksheet named "Export".
using var package = new ExcelPackage();
// do stuff with the package
using var writer = new CsvWriter(new ExcelWriter(package));
writer.WriteRecords(people);
// do other stuff with package
package.SaveAs(new FileInfo("path/to/file.xlsx"));
new ExcelWriter(ExcelPackage package, ExcelWorksheet worksheet, CsvConfiguration configuration = null)
The same as the overload which takes ExcelPackage
and sheetName
parameters, but this one allows specifying the worksheet by reference rather than name. As before, the workbook is saved only when the writer is disposed or the consumer manually calls package.Save()
or package.SaveAs(...)
.
When the writer is disposed it will not automatically dispose the package unless an instance of CsvConfiguration
with its LeaveOpen
property set to false
was also passed.
using var package = new ExcelPackage();
var worksheet = package.Workbook.Worksheets.Add("Folk");
using var writer = new CsvWriter(new ExcelWriter(package, worksheet));
writer.WriteRecords(people);
package.SaveAs(new FileInfo("path/to/file.xlsx"));
new ExcelWriter(ExcelPackage package, ExcelRange range, CsvConfiguration configuration = null)
Similar to the overload which takes ExcelPackage
and ExcelWorksheet
parameters, but this one allows targeting a specific range of cells within an Excel worksheet. As before, the workbook is saved only when the writer is disposed or the consumer manually calls package.Save()
or package.SaveAs(...)
.
using var package = new ExcelPackage();
var worksheet = package.Workbook.Worksheets.Add("Folk");
using var writer = new CsvWriter(new ExcelWriter(package, worksheet.Cells[2, 5, 400, 33]));
writer.WriteRecords(people);
package.SaveAs(new FileInfo("path/to/file.xlsx"));
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.