2021-03-26 14:53:04 +08:00
[![NuGet ](https://img.shields.io/nuget/v/MiniExcel.svg )](https://www.nuget.org/packages/MiniExcel) [![ ](https://img.shields.io/nuget/dt/MiniExcel.svg )](https://www.nuget.org/packages/MiniExcel) [![Build status ](https://ci.appveyor.com/api/projects/status/b2vustrwsuqx45f4/branch/master?svg=true )](https://ci.appveyor.com/project/shps951023/miniexcel/branch/master) [![.NET Framework ](https://img.shields.io/badge/.NET%20Framework-%3E%3D%204.6.1-red.svg )](#) [![.NET Standard ](https://img.shields.io/badge/.NET%20Standard-%3E%3D%202.0-red.svg )](#) [![.NET ](https://img.shields.io/badge/.NET%20-%3E%3D%205.0-red.svg )](#)
2021-03-30 10:14:42 +08:00
2021-03-29 19:16:56 +08:00
---
2021-04-02 21:55:02 +08:00
[English ](https://github.com/shps951023/MiniExcel ) / [繁體中文 ](https://github.com/shps951023/MiniExcel/blob/master/README.zh-tw.md ) / [简体中文 ](https://github.com/shps951023/MiniExcel/blob/master/README.zh-Hans.md )
2021-03-29 19:16:56 +08:00
---
2021-03-30 10:14:42 +08:00
### Introduction
MiniExcel is simple and efficient to avoid OOM's .NET processing Excel tool.
2021-03-25 11:59:05 +08:00
2021-03-30 10:14:42 +08:00
At present, most popular frameworks need to load all the data into the memory to facilitate operation, but it will cause memory consumption problems. MiniExcel tries to use algorithm from a stream to reduce the original 1000 MB occupation to a few MB to avoid OOM(out of memory).
2021-03-25 11:59:05 +08:00
2021-03-31 11:37:05 +08:00
![image ](https://user-images.githubusercontent.com/12729184/113086657-ab8bd000-9214-11eb-9563-c970ac1ee35e.png )
2021-03-03 13:19:27 +08:00
### Features
2021-03-31 11:37:05 +08:00
- Low memory consumption, avoid OOM (out of memory) and full GC
2021-03-30 10:14:42 +08:00
- Support `real-time` operation of each row of data
![miniexcel_lazy_load ](https://user-images.githubusercontent.com/12729184/111034290-e5588a80-844f-11eb-8c84-6fdb6fb8f403.gif )
- Support LINQ deferred execution, it can do low-consumption, fast paging and other complex queries
![queryfirst ](https://user-images.githubusercontent.com/12729184/111072392-6037a900-8515-11eb-9693-5ce2dad1e460.gif )
- Lightweight, does not with any third-party dependencies, DLL is less than 100KB
- Easy Dapper API style
2021-03-26 13:46:08 +08:00
2021-03-03 13:19:27 +08:00
### Installation
You can install the package [from NuGet ](https://www.nuget.org/packages/MiniExcel )
2021-03-03 13:56:32 +08:00
2021-03-15 13:41:29 +08:00
### Release Notes
Please Check [Release Notes ](https://github.com/shps951023/MiniExcel/tree/master/docs )
2021-03-29 10:29:55 +08:00
### TODO
Please Check [Project · todo ](https://github.com/shps951023/MiniExcel/projects/1?fullscreen=true )
2021-03-30 10:14:42 +08:00
### Performance
2021-03-30 21:37:12 +08:00
[**Test1,000,000x10.xlsx** ](https://github.com/shps951023/MiniExcel/blob/master/samples/xlsx/Test1%2C000%2C000x10/Test1%2C000%2C000x10.xlsx ) as performance test basic file,A total of 10,000,000 "HelloWorld" with a file size of 23 MB
2021-03-30 10:14:42 +08:00
2021-03-30 21:37:12 +08:00
Benchmarks logic can be found in [MiniExcel.Benchmarks ](https://github.com/shps951023/MiniExcel/tree/master/benchmarks/MiniExcel.Benchmarks ) , and test cli
2021-03-30 10:14:42 +08:00
```
dotnet run -p .\benchmarks\MiniExcel.Benchmarks\ -c Release -f netcoreapp3.1 -- -f * --join
```
Output from the latest run is :
```
BenchmarkDotNet=v0.12.1, OS=Windows 10.0.19042
Intel Core i7-7700 CPU 3.60GHz (Kaby Lake), 1 CPU, 8 logical and 4 physical cores
[Host] : .NET Framework 4.8 (4.8.4341.0), X64 RyuJIT
Job-ZYYABG : .NET Framework 4.8 (4.8.4341.0), X64 RyuJIT
IterationCount=3 LaunchCount=3 WarmupCount=3
```
2021-03-30 21:37:12 +08:00
| Method | Max Memory Usage | Mean | Gen 0 | Gen 1 | Gen 2 |
| ---------------------------- | ---------------: | ---------------: | -----------: | ----------: | ---------: |
| 'MiniExcel QueryFirst' | 0.109 MB | 726.4 us | - | - | - |
| 'ExcelDataReader QueryFirst' | 15.24 MB | 10,664,238.2 us | 566000.0000 | 1000.0000 | - |
| 'MiniExcel Query' | 17.3 MB | 14,179,334.8 us | 367000.0000 | 96000.0000 | 7000.0000 |
| 'ExcelDataReader Query' | 17.3 MB | 22,565,088.7 us | 1210000.0000 | 2000.0000 | - |
2021-04-01 11:42:58 +08:00
| 'Epplus QueryFirst' | 1,452 MB | 18,198,015.4 us | 535000.0000 | 132000.0000 | 9000.0000 |
2021-03-30 21:37:12 +08:00
| 'Epplus Query' | 1,451 MB | 23,647,471.1 us | 1451000.0000 | 133000.0000 | 9000.0000 |
| 'OpenXmlSDK Query' | 1,412 MB | 52,003,270.1 us | 978000.0000 | 353000.0000 | 11000.0000 |
| 'OpenXmlSDK QueryFirst' | 1,413 MB | 52,348,659.1 us | 978000.0000 | 353000.0000 | 11000.0000 |
| 'ClosedXml QueryFirst' | 2,158 MB | 66,188,979.6 us | 2156000.0000 | 575000.0000 | 9000.0000 |
| 'ClosedXml Query' | 2,184 MB | 191,434,126.6 us | 2165000.0000 | 577000.0000 | 10000.0000 |
| Method | Max Memory Usage | Mean | Gen 0 | Gen 1 | Gen 2 |
| ------------------------ | ---------------: | ---------------: | -----------: | -----------: | ---------: |
| 'MiniExcel Create Xlsx' | 15 MB | 11,531,819.8 us | 1020000.0000 | - | - |
| 'Epplus Create Xlsx' | 1,204 MB | 22,509,717.7 us | 1370000.0000 | 60000.0000 | 30000.0000 |
| 'OpenXmlSdk Create Xlsx' | 2,621 MB | 42,473,998.9 us | 1370000.0000 | 460000.0000 | 50000.0000 |
| 'ClosedXml Create Xlsx' | 7,141 MB | 140,939,928.6 us | 5520000.0000 | 1500000.0000 | 80000.0000 |
2021-03-30 10:14:42 +08:00
2021-03-29 11:22:56 +08:00
### Execute a query and map the results to a strongly typed IEnumerable [[Try it]](https://dotnetfiddle.net/w5WD1J)
2021-03-15 13:41:29 +08:00
2021-03-29 09:58:36 +08:00
Recommand to use Stream.Query because of better efficiency.
2021-03-15 13:41:29 +08:00
```C#
public class UserAccount
{
public Guid ID { get; set; }
public string Name { get; set; }
public DateTime BoD { get; set; }
public int Age { get; set; }
public bool VIP { get; set; }
public decimal Points { get; set; }
}
2021-03-29 09:58:36 +08:00
var rows = MiniExcel.Query< UserAccount > (path);
// or
2021-03-15 13:41:29 +08:00
using (var stream = File.OpenRead(path))
var rows = stream.Query< UserAccount > ();
```
![image ](https://user-images.githubusercontent.com/12729184/111107423-c8c46b80-8591-11eb-982f-c97a2dafb379.png )
2021-03-29 11:22:56 +08:00
### Execute a query and map it to a list of dynamic objects without using head [[Try it]](https://dotnetfiddle.net/w5WD1J)
2021-03-16 20:39:49 +08:00
* dynamic key is `A.B.C.D..`
2021-03-13 22:39:20 +08:00
2021-03-30 10:14:42 +08:00
| MiniExcel | 1 |
| -------- | -------- |
| Github | 2 |
2021-03-13 22:39:20 +08:00
```C#
2021-03-29 09:58:36 +08:00
var rows = MiniExcel.Query(path).ToList();
// or
2021-03-13 22:39:20 +08:00
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);
}
```
2021-03-29 11:22:56 +08:00
### Execute a query with first header row [[Try it]](https://dotnetfiddle.net/w5WD1J)
2021-03-13 22:39:20 +08:00
2021-03-29 10:29:55 +08:00
note : same column name use last right one
Input Excel :
2021-03-30 10:14:42 +08:00
| Column1 | Column2 |
| -------- | -------- |
| MiniExcel | 1 |
| Github | 2 |
2021-03-13 22:39:20 +08:00
```C#
2021-03-29 09:58:36 +08:00
var rows = MiniExcel.Query(useHeaderRow:true).ToList();
// or
2021-03-13 22:39:20 +08:00
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);
}
```
2021-03-29 09:58:36 +08:00
### Query Support LINQ Extension First/Take/Skip ...etc
2021-03-21 18:26:00 +08:00
2021-03-29 09:58:36 +08:00
Query First
2021-03-21 18:26:00 +08:00
```C#
2021-03-29 09:58:36 +08:00
var row = MiniExcel.Query(path).First();
Assert.Equal("HelloWorld", row.A);
// or
2021-03-21 18:26:00 +08:00
using (var stream = File.OpenRead(path))
2021-03-29 09:58:36 +08:00
{
var row = stream.Query().First();
Assert.Equal("HelloWorld", row.A);
}
2021-03-21 18:26:00 +08:00
```
2021-03-29 09:58:36 +08:00
Performance between MiniExcel/ExcelDataReader/ClosedXML/EPPlus
2021-03-21 18:26:00 +08:00
![queryfirst ](https://user-images.githubusercontent.com/12729184/111072392-6037a900-8515-11eb-9693-5ce2dad1e460.gif )
2021-03-29 11:22:56 +08:00
### Create Excel file [[Try it]](https://dotnetfiddle.net/w5WD1J)
2021-03-29 09:58:36 +08:00
2021-03-30 10:14:42 +08:00
1. Must be a non-abstract type with a public parameterless constructor .
2. MiniExcel support parameter IEnumerable Deferred Execution, If you want to use least memory, please do not call methods such as ToList
e.g : ToList or not memory usage
![image ](https://user-images.githubusercontent.com/12729184/112587389-752b0b00-8e38-11eb-8a52-cfb76c57e5eb.png )
2021-03-15 13:41:29 +08:00
2021-03-25 15:11:16 +08:00
Anonymous or strongly type:
2021-03-14 13:26:40 +08:00
```C#
2021-03-14 00:01:42 +08:00
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.xlsx");
2021-03-14 20:56:10 +08:00
MiniExcel.SaveAs(path, new[] {
2021-03-14 00:01:42 +08:00
new { Column1 = "MiniExcel", Column2 = 1 },
new { Column1 = "Github", Column2 = 2}
});
```
Datatable:
2021-03-14 13:26:40 +08:00
```C#
2021-03-14 00:01:42 +08:00
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.xlsx");
var table = new DataTable();
{
table.Columns.Add("Column1", typeof(string));
table.Columns.Add("Column2", typeof(decimal));
table.Rows.Add("MiniExcel", 1);
table.Rows.Add("Github", 2);
}
2021-03-14 20:56:10 +08:00
MiniExcel.SaveAs(path, table);
2021-03-14 00:01:42 +08:00
```
2021-03-21 17:10:37 +08:00
Dapper:
```C#
using (var connection = GetConnection(connectionString))
{
var rows = connection.Query(@"select 'MiniExcel' as Column1,1 as Column2 union all select 'Github',2");
MiniExcel.SaveAs(path, rows);
}
```
`IEnumerable<IDictionary<string, object>>`
```C#
var values = new List< Dictionary < string , object > >()
{
new Dictionary< string , object > {{ "Column1", "MiniExcel" }, { "Column2", 1 } },
new Dictionary< string , object > {{ "Column1", "Github" }, { "Column2", 2 } }
};
MiniExcel.SaveAs(path, values);
```
2021-03-14 00:01:42 +08:00
Create File Result :
2021-03-30 10:14:42 +08:00
| Column1 | Column2 |
| -------- | -------- |
| MiniExcel | 1 |
| Github | 2 |
2021-03-14 00:01:42 +08:00
2021-03-25 15:11:16 +08:00
### SaveAs Stream [[Try it]](https://dotnetfiddle.net/JOen0e)
2021-03-14 13:26:40 +08:00
```C#
2021-03-25 15:11:16 +08:00
using (var stream = File.Create(path))
2021-03-14 13:26:40 +08:00
{
stream.SaveAs(values);
}
```
2021-03-13 22:39:20 +08:00
2021-03-14 22:41:21 +08:00
2021-04-02 17:59:57 +08:00
### Excel Column Name/Ignore Attribute
e.g
input excel :
| Test1 | Test2 | Test3 | Test4 | Test5 | Test6 | Column1 | Column2 |
| ----- | ----- | ----- | ----- | ----- | ----- | ------- | ------- |
| Test1 | Test2 | Test3 | Test4 | Test5 | Test6 | Column1 | Column2 |
```C#
public class ExcelAttributeDemo
{
[ExcelColumnName("Column1")]
public string Test1 { get; set; }
[ExcelColumnName("Column2")]
public string Test2 { get; set; }
[ExcelIgnore]
public string Test3 { get; set; }
public string Test4 { get; set; }
public string Test5 { get; }
public string Test6 { get; private set; }
}
var rows = MiniExcel.Query< ExcelAttributeDemo > (path).ToList();
Assert.Equal("Column1", rows[0].Test1);
Assert.Equal("Column2", rows[0].Test2);
Assert.Null(rows[0].Test3);
Assert.Equal("Test4", rows[0].Test4);
Assert.Null(rows[0].Test5);
Assert.Null(rows[0].Test6);
```
2021-03-30 10:14:42 +08:00
### SQLite & Dapper `Large Size File` SQL Insert Avoid OOM
2021-03-14 22:40:14 +08:00
2021-03-29 10:29:55 +08:00
note : please don't call ToList/ToArray methods after Query, it'll load all data into memory
2021-03-14 22:40:14 +08:00
```C#
using (var connection = new SQLiteConnection(connectionString))
{
connection.Open();
using (var transaction = connection.BeginTransaction())
using (var stream = File.OpenRead(path))
{
var rows = stream.Query();
foreach (var row in rows)
connection.Execute("insert into T (A,B) values (@A,@B)", new { row.A, row.B }, transaction: transaction);
transaction.Commit();
}
}
```
2021-03-14 22:41:21 +08:00
performance:
![image ](https://user-images.githubusercontent.com/12729184/111072579-2dda7b80-8516-11eb-9843-c01a1edc88ec.png )
2021-03-14 20:45:33 +08:00
### ASP.NET Core 3.1 or MVC 5 Download Excel Xlsx API Demo
2021-03-14 14:09:49 +08:00
```C#
2021-03-14 20:45:33 +08:00
public class ExcelController : Controller
2021-03-14 14:09:49 +08:00
{
2021-03-14 20:45:33 +08:00
public IActionResult Download()
2021-03-14 14:09:49 +08:00
{
var values = new[] {
new { Column1 = "MiniExcel", Column2 = 1 },
new { Column1 = "Github", Column2 = 2}
};
var stream = new MemoryStream();
stream.SaveAs(values);
return File(stream,
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"demo.xlsx");
}
}
```
2021-03-24 17:11:46 +08:00
### Excel Type Auto Check
Default system will auto check file path or stream is from xlsx or csv, but if you need to specify type, it can use excelType parameter.
```C#
stream.SaveAs(excelType:ExcelType.CSV);
//or
stream.SaveAs(excelType:ExcelType.XLSX);
2021-03-25 15:11:16 +08:00
//or
stream.Query(excelType:ExcelType.CSV);
//or
stream.Query(excelType:ExcelType.XLSX);
2021-03-24 17:11:46 +08:00
```
2021-03-26 13:46:08 +08:00
2021-04-02 17:59:57 +08:00
### Dynamic Query cast row to `IDictionary<string,object>`
```C#
foreach(IDictionary< string , object > row = MiniExcel.Query(path))
{
//..
}
```
2021-03-15 13:41:29 +08:00
### Limitations and caveats
2021-04-02 17:59:57 +08:00
2021-03-29 10:29:55 +08:00
- Not support xls and encrypted file now
2021-03-14 23:11:54 +08:00
2021-03-24 17:11:46 +08:00
### Reference
2021-03-14 23:11:54 +08:00
2021-03-24 17:11:46 +08:00
- [ExcelDataReader ](https://github.com/ExcelDataReader/ExcelDataReader )
- [StackExchange/Dapper ](https://github.com/StackExchange/Dapper )