WeihanLi.Npoi

Intro

Npoi 扩展,适用于.netframework4.5及以上和netstandard2.0, .netframework基于NPOI, .netstandard基于 DotNetCore.NPOI

NpoiExtensions for target framework net4.5 or netstandard2.0,for net45 basedon NPOI,for .netstandard basedon DotNetCore.NPOI

Use

Install

.NetFramework

Install-Package WeihanLi.Npoi

.NetCore

dotnet add package WeihanLi.Npoi

GetStarted

  1. LoadFromExcelFile

    it consider the first row of the sheet as the header not for read,it will read data from next row.You can point out your header row through the exposed api if needed.

    • Read Excel to DataSet

      // read excel to dataSet, read all sheets data to dataSet,by default it will read from the headerRowIndex(0) + 1
      var dataSet = ExcelHelper.ToDataSet(string excelPath); // read excel to dataSet, read all sheets data to dataSet,headerRowIndex is not for read,read from headerRowIndex+1
      var dataSet = ExcelHelper.ToDataSet(string excelPath, int headerRowIndex);
    • Read Excel to DataTable

      // read excel to dataTable directly,by default read the first sheet content
      var dataTable = ExcelHelper.ToDataTable(string excelPath); // read excel workbook's sheetIndex sheet to dataTable directly
      var dataTableOfSheetIndex = ExcelHelper.ToDataTable(string excelPath, int sheetIndex); // read excel workbook's sheetIndex sheet to dataTable,custom headerRowIndex
      var dataTableOfSheetIndex = ExcelHelper.ToDataTable(string excelPath, int sheetIndex, int headerRowIndex); // read excel to dataTable use mapping relations and settings from typeof(T),by default read the first sheet content
      var dataTableT = ExcelHelper.ToDataTable<T>(string excelPath); // ... sheetIndex and headerRowIndex is also supported like above
    • Read Excel to List

      // read excel first sheet content to a List<T>
      var entityList = ExcelHelper.ToEntityList<T>(string excelPath); // read excel sheetIndex sheet content to a List<T>
      // you can custom header row index via sheet attribute or fluent api HasSheet
      var entityList1 = ExcelHelper.ToEntityList<T>(string excelPath, int sheetIndex);
  2. Get a workbook

    // load excel workbook from file
    var workbook = LoadExcel(string excelPath); // prepare a workbook accounting to excelPath
    var workbook = PrepareWorkbook(string excelPath); // prepare a workbook accounting to excelPath and custom excel settings
    var workbook = PrepareWorkbook(string excelPath, ExcelSetting excelSetting); // prepare a workbook whether *.xlsx file
    var workbook = PrepareWorkbook(bool isXlsx); // prepare a workbook whether *.xlsx file and custom excel setting
    var workbook = PrepareWorkbook(bool isXlsx, ExcelSetting excelSetting);
  3. Rich extensions


    List<TEntity> ToEntityList<TEntity>([NotNull]this IWorkbook workbook) DataTable ToDataTable([NotNull]this IWorkbook workbook) ISheet ImportData<TEntity>([NotNull] this ISheet sheet, DataTable dataTable) int ImportData<TEntity>([NotNull] this IWorkbook workbook, IEnumerable<TEntity> list,
    int sheetIndex) int ImportData<TEntity>([NotNull] this ISheet sheet, IEnumerable<TEntity> list) int ImportData<TEntity>([NotNull] this IWorkbook workbook, [NotNull] DataTable dataTable,
    int sheetIndex) ToExcelFile<TEntity>([NotNull] this IEnumerable<TEntity> entityList,
    [NotNull] string excelPath) int ToExcelStream<TEntity>([NotNull] this IEnumerable<TEntity> entityList,
    [NotNull] Stream stream) byte[] ToExcelBytes<TEntity>([NotNull] this IEnumerable<TEntity> entityList) int ToExcelFile([NotNull] this DataTable dataTable, [NotNull] string excelPath) int ToExcelStream([NotNull] this DataTable dataTable, [NotNull] Stream stream) byte[] ToExcelBytes([NotNull] this DataTable dataTable) byte[] ToExcelBytes([NotNull] this IWorkbook workbook) int WriteToFile([NotNull] this IWorkbook workbook, string filePath) object GetCellValue([NotNull] this ICell cell, Type propertyType) T GetCellValue<T>([NotNull] this ICell cell) SetCellValue([NotNull] this ICell cell, object value)

Define Custom Mapping and settings

  1. Attributes

    Add ColumnAttribute on the property of the entity which you used for export or import

    Add SheetAttribute on the entity which you used for export or import,you can set the StartRowIndex on your need(by default it is 1)

    for example:

    public class TestEntity
    {
    [Column("PKID")]
    public int PKID { get; set; } [Column("账单标题")]
    public string BillTitle { get; set; } [Column("账单详情")]
    public string BillDetails { get; set; } [Column("创建人")]
    public string CreatedBy { get; set; } [Column("创建时间")]
    public DateTime CreatedTime { get; set; }
    } internal class TestEntity1
    {
    /// <summary>
    /// 用户名
    /// </summary>
    [Column("用户名")]
    public string Username { get; set; } [Column(IsIgnored = true)]
    public string PasswordHash { get; set; } [Column("可用余额")]
    public decimal Amount { get; set; } = 1000M; [Column("微信id")]
    public string WechatOpenId { get; set; } [Column("是否启用")]
    public bool IsActive { get; set; }
    }
  2. FluentApi

    You can also use FluentApi above version 1.0.3

    for example:

    var setting = ExcelHelper.SettingFor<TestEntity>();
    // ExcelSetting
    setting.HasAuthor("WeihanLi")
    .HasTitle("WeihanLi.Npoi test")
    .HasDescription("")
    .HasSubject(""); setting.HasSheetConfiguration(0, "系统设置列表"); setting.HasFilter(0, 1)
    .HasFreezePane(0, 1, 2, 1);
    setting.Property(_ => _.SettingId)
    .HasColumnIndex(0); setting.Property(_ => _.SettingName)
    .HasColumnTitle("设置名称")
    .HasColumnIndex(1); setting.Property(_ => _.DisplayName)
    .HasColumnTitle("设置显示名称")
    .HasColumnIndex(2); setting.Property(_ => _.SettingValue)
    .HasColumnTitle("设置值")
    .HasColumnIndex(3); setting.Property(_ => _.CreatedTime)
    .HasColumnTitle("创建时间")
    .HasColumnIndex(5)
    .HasColumnFormatter("yyyy-MM-dd HH:mm:ss"); setting.Property(_ => _.CreatedBy)
    .HasColumnIndex(4)
    .HasColumnTitle("创建人"); setting.Property(_ => _.UpdatedBy).Ignored();
    setting.Property(_ => _.UpdatedTime).Ignored();
    setting.Property(_ => _.PKID).Ignored();

Samples

Contact

Contact me: weihanli@outlook.com

WeihanLi.Npoi的更多相关文章

  1. 使用 WeihanLi.Npoi 操作 CSV

    使用 WeihanLi.Npoi 操作 CSV Intro 最近发现 csv 文件在很多情况下都在使用,而且经过大致了解,csv 格式简单,相比 excel 文件要小很多,读取也很是方便,而且也很通用 ...

  2. WeihanLi.Npoi 导出支持自定义列内容啦

    WeihanLi.Npoi 导出支持自定义列内容啦 Intro 之前也有网友给提出过希望列合并或者自定义列内容的 issue 或请求,起初因为自己做 WeihanLi.Npoi 这个扩展的最初目的是导 ...

  3. WeihanLi.Npoi 近期更新

    WeihanLi.Npoi 近期更新 Intro 最近对我的 NPOI 扩展做了一些改变,一方面提高性能,一方面修复bug,增加一些新的功能来让它更加好用,前几天发布了 1.5.0 版本,下面来介绍一 ...

  4. WeihanLi.Npoi 支持 ShadowProperty 了

    WeihanLi.Npoi 支持 ShadowProperty 了 Intro 在 EF 里有个 ShadowProperty (阴影属性/影子属性)的概念,你可以通过 FluentAPI 的方式来定 ...

  5. WeihanLi.Npoi 1.7.0 更新

    WeihanLi.Npoi 1.7.0 更新介绍 Intro 昨天晚上发布了 WeihanLi.Npoi 1.7.0 版本,增加了 ColumnInputFormatter/ColumnOutputF ...

  6. WeihanLi.Npoi 根据模板导出Excel

    WeihanLi.Npoi 根据模板导出Excel Intro 原来的导出方式比较适用于比较简单的导出,每一条数据在一行,数据列虽然自定义程度比较高,如果要一条数据对应多行就做不到了,于是就想支持根据 ...

  7. WeihanLi.Npoi 1.10.0 更新日志

    WeihanLi.Npoi 1.10.0 更新日志 Intro 上周有个网友希望能够导入Excel时提供一个 EndRowIndex 来自己控制结束行和根据字段过滤的,周末找时间做了一下这个 feat ...

  8. WeihanLi.Npoi 1.11.0/1.12.0 Release Notes

    WeihanLi.Npoi 1.11.0/1.12.0 Release Notes Intro 最近 NPOI 扩展新更新了两个版本,感谢 shaka chow 的帮忙和支持,这两个 Feature ...

  9. WeihanLi.Npoi 1.13.0 更新日志

    WeihanLi.Npoi 1.13.0 更新日志 Intro 在 Github 上收到 Issue 收到网友反馈希望支持自动分 Sheet 导出,有兴趣的可以参考 Issue https://git ...

随机推荐

  1. 前端开发必备之Chrome开发者工具(一)

    本文介绍的 Chrome 开发者工具基于 Chrome 65版本,如果你的 Chrome 开发者工具没有下文提到的那些内容,请检查下 Chrome 的版本 简介 Chrome 开发者工具是一套内置于 ...

  2. SVN (TortioseSVN) 版本控制之忽略路径(如bin、obj、gen)

    在SVN版本控制时,新手经常会遇到这样的问题: 1.整个项目一起提交时会把bin . gen . .project 一同提交至服务器 2.避免提交编译.本地配置等文件在项目中单独对src.res进行提 ...

  3. Window7系统下安装jdk

    根据电脑的操作系统下载相对于的jdk版本(32位或64位),我安装的是:java_jdk1.7 [计算机]——[属性]——[高级系统设置]——高级——[环境变量] 系统变量——>新建JAVA_H ...

  4. python基础二(基础数据类型)

    一. 引子 1. 什么是数据 x=10,10是我们要存储的数据 2. 为何数据要分不同的类型 数据是用来表示状态的,不同的状态就应该用不同的类型的数据去表示 3.数据类型 数字 字符串 列表 元组 字 ...

  5. switchysharp设置

    在线规则列表里面插入下面的网址:https://autoproxy-gfwlist.googlecode.com/svn/trunk/gfwlist.txt

  6. c# IPC实现本机进程之间的通信

    IPC可以实现本地进程之间通信.这种用法不是太常见,常见的替代方案是使用wcf,remoting,web service,socket(tcp/pipe/...)等其他分布式部署方案来替代进程之间的通 ...

  7. 解决:My97DatePicker 日期插件引用在PHP文件中maxDate和minDate控制失效问题

    开发环境: 语言:PHP 框架:ThinkPHP 问题:在引用插件My97DatePicker时,想实现:开始日期不能大于结束日期,结束时间不能小于开始时间 步骤一.查看文档官方文档http://ww ...

  8. django 开发忘记密码通过邮箱找回功能

    一.流程分析: 1.点击忘记密码====>forget.html页面,输入邮箱和验证码,发送验证链接网址的邮件====>发送成功,跳到send_success.html提示 2.到邮箱里找 ...

  9. string [] 去除重复字符两个方法

    不废话直接看图 结果 代码: this.txtListHTML.Text = String.Join(",", list.Replace("\r\n", &qu ...

  10. [LeetCode] Coin Path 硬币路径

    Given an array A (index starts at 1) consisting of N integers: A1, A2, ..., AN and an integer B. The ...