2021-03-03 15:38:54 +08:00
## Release Notes
2021-03-22 17:14:11 +08:00
### 0.4.0
2021-03-25 09:24:00 +08:00
- Support create CSV by file path or stream
2021-03-25 11:35:26 +08:00
- Support csv custom configuration setting
- Support auto/manual specify excel type (xlsx or csv)
2021-03-25 10:36:04 +08:00
- [Breaking Changes] Remove Query First/FirstOrDefault/Single/SingleOrDefault, user can use LINQ method do it.
2021-03-22 17:14:11 +08:00
2021-03-21 18:26:00 +08:00
### 0.3.0
2021-03-21 17:10:37 +08:00
- Support SaveAs by IEnumerable of DapperRow and IDictionary< string , object >
2021-03-21 18:26:00 +08:00
- Support dynamic query timespan style format mapping to timespan type.
2021-03-21 17:10:37 +08:00
2021-03-20 14:51:06 +08:00
### 0.2.3
- [Bug] Fix ShMemory leak and static problem.
- Support style datetime format mapping to datetime type.
2021-03-18 11:41:22 +08:00
### 0.2.2
- SavaAs support xl/sheet dimension
- [Breaking Changes] SaveAs value type from object to DataTable & ICollection
2021-03-20 14:51:06 +08:00
- [Bug] Fix ICollection with type but no data error (https://github.com/shps951023/MiniExcel/issues/105)
2021-03-18 11:41:22 +08:00
2021-03-16 15:24:37 +08:00
### 0.2.1
2021-03-17 08:45:12 +08:00
- Optimize type mapping bool and datetime auto check
- Query Support xl/worksheets/Sheet Xml Xml `<c>` without `r` attribute or without `<dimension>` but `<c>` with `r` attribute, but now performance is slow than with dimension ([](https://github.com/shps951023/MiniExcel/issues/2))
2021-03-16 15:24:37 +08:00
### 0.2.0
- Release to nuget.org
2021-03-15 13:41:29 +08:00
### 0.1.0-preview
- Add Query strongly typed mapping
- Add QueryFirstOrDefault、QuerySingle、QuerySingleOrDefault
### 0.0.7-beta
- Add QueryFirst method
2021-03-14 20:56:10 +08:00
### 0.0.6-beta
- [Breaking Changes]Replace Create by SavaAs
2021-03-14 20:45:14 +08:00
### 0.0.5-beta
- Release remove `assembly: InternalsVisibleTo`
2021-03-14 13:26:40 +08:00
### 0.0.4-beta
- Support SaveAs Stream
2021-03-05 12:18:12 +08:00
### 0.0.3-beta
2021-03-13 22:39:20 +08:00
- Support Query dynamic and IEnumrable lazy loading to avoid OOM
2021-03-05 12:18:12 +08:00
- MiniExcelHelper.Create value type change to ICollection
- Encode XML Value `' " > < &`
2021-03-13 22:39:20 +08:00
- Check Multiple Sheet Index Order
- Dynamic Query support A,B,C.. column name key
- Support insert empty Rows between rows
2021-03-05 12:18:12 +08:00
### 0.0.2-beta
- Remove System.IO.Packaging.Package Dependency, and replaced by System.IO.Compression.ZipArchive
- Add MiniExcelHelper.Read Method
2021-03-03 15:38:54 +08:00
### 0.0.1-beta
2021-03-05 12:18:12 +08:00
- Add MiniExcelHelper.Create
### 0.0.0
2021-03-03 15:38:54 +08:00
- Init