FluentExcel
FluentExcel copied to clipboard
Use Fluent API to configure POCO excel behaviors, and then provides IEnumerable<T> has save to and load from excel functionalities.
Excel.Load执行完毕后,MemoryStream 被自动释放了,由于该流对象还需要进行二次使用,故此我认为Load方法不应该释放外部的流对象
导出字节流 标题变成了 1PX
Currently we using `ToExcel` to save the `IEnumerable` to excel file, but in .NET work, the name `SaveTo` is more idioms
Currently, if without any configuration, the default behavior is using the POCO's property as title, but the better solution is: assume the property name is `PropertyName`, the title SHOULD be...
Currently, the the first row is the title row, but, in some cases (e.g. exporting to the specify excel template, the title row had exist), the title row SHOULD be...
Currently only load the data from excel first sheet or specified sheet, but if the data very very large, SHOULD support load from multiple sheets.