Migrated repository
Go to file
2021-03-14 00:01:28 +08:00
docs - Dynamic Query support A,B,C.. column name key 2021-03-13 22:39:20 +08:00
drafts 【Reader】XmlReader Read Sheet.linq 2021-03-13 00:52:01 +08:00
samples/xlsx - Dynamic Query support A,B,C.. column name key 2021-03-13 22:39:20 +08:00
src Add sharedStringsEntry null check 2021-03-14 00:01:28 +08:00
.gitattributes .gitattributes 2021-03-03 13:26:37 +08:00
.gitignore Add: VS MiniExcel Project 2021-03-03 13:06:45 +08:00
LICENSE.md Apache License 2.0 2021-03-10 08:30:47 +08:00
README.md Edit Doc 2021-03-13 23:39:02 +08:00

NuGet

Features

  • Avoid large file OOM(out of memoery) by IEnumerable Lazy Step By Step getting one row cells not until all rows read in memory
    e.g: Comparison of MiniExcel Query and ExcelDataReader/EPPlus/ClosedXml of reading large Xlsx File miniexcel_lazy_load
  • Mini (DLL Size Only 20KB) and easy to use.
  • Support .NET Standard 2.0/.NET 4.6/.NET 5
  • Without any third party library dependencies
  • Support dynamic/type mapping query and create by anonymous Types/DapperRows/List/Array/Set/Enumrable/DataTable/Dictionary

Installation

You can install the package from NuGet

Execute a query and map it to a list of dynamic objects without using head

MiniExcel 1
Github 2
using (var stream = File.OpenRead(path))
{
    var rows = stream.Query().ToList();
                
    Assert.Equal("MiniExcel", rows[0].A);
    Assert.Equal(1, rows[0].B);
    Assert.Equal("Github", rows[1].A);
    Assert.Equal(2, rows[1].B);
}

Execute a query with first header row

Column1 Column2
MiniExcel 1
Github 2
using (var stream = File.OpenRead(path))
{
    var rows = stream.Query(useHeaderRow:true).ToList();

    Assert.Equal("MiniExcel", rows[0].Column1);
    Assert.Equal(1, rows[0].Column2);
    Assert.Equal("Github", rows[1].Column1);
    Assert.Equal(2, rows[1].Column2);
}

TODO

Please Check Issues · todo

Release Notes

Please Check Release Notes