• Stars
    star
    193
  • Rank 200,165 (Top 4 %)
  • Language
    C#
  • License
    Apache License 2.0
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

NPOI Extensions, excel/csv importer/exporter for IEnumerable<T>/DataTable, fluentapi(great flexibility)/attribute configuration

WeihanLi.Npoi

WeihanLi.Npoi

WeihanLi.Npoi Latest

Build Status

Azure Pipeline Build Status

Github Build Status

Travis Build Status

Intro

NPOI extensions based on target framework netstandard2.0/net6.0.

There're a lot of useful extensions for you, core features are as follows:

  • mapping a excel file data to a DataTable or List<TEntity>/IEnumerable<T>
  • export IEnumerable<TEntity> or DataTable data to Excel file or Excel file bytes or even write excel file stream to your stream
  • export IEnumerable<TEntity> or DataTable data to csv file or bytes.
  • custom configuration/mappings by Attribute or FluentAPI(inspired by FluentExcel)
  • great flexibility by fluent InputFormatter/OutputFormatter/ColumnInputFormatter/ColumnOutputFormatter/CellReader

GetStarted

  1. Export list/dataTable to Excel/csv

    var entities = new List<Entity>();
    entities.ToExcelFile(string excelPath);
    entities.ToExcelBytes(ExcelFormat excelFormat);
    entities.ToCsvFile(string csvPath);
    entities.ToCsvBytes();
  2. Read Excel/csv to List

    // read excel first sheet content to List<T>
    var entityList = ExcelHelper.ToEntityList<T>(string excelPath);
    
    // read excel first sheet content to IEnumerable<T>
    var entityList = ExcelHelper.ToEntities<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);
    
    var entityList2 = CsvHelper.ToEntityList<T>(string csvPath);
    var entityList3 = CsvHelper.ToEntityList<T>(byte[] csvBytes);
  3. Read Excel/csv 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);
    
    // read csv file data to dataTable
    var dataTable1 = CsvHelper.ToDataTable(string csvFilePath);

More Api here: https://weihanli.github.io/WeihanLi.Npoi/docs/api/WeihanLi.Npoi.html

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("Id")]
        public int PKID { get; set; }
    
        [Column("Bill Title")]
        public string BillTitle { get; set; }
    
        [Column("Bill Details")]
        public string BillDetails { get; set; }
    
        [Column("CreatedBy")]
        public string CreatedBy { get; set; }
    
        [Column("CreatedTime")]
        public DateTime CreatedTime { get; set; }
    }
    
    public class TestEntity1
    {
        [Column("Username")]
        public string Username { get; set; }
    
        [Column(IsIgnored = true)]
        public string PasswordHash { get; set; }
    
        [Column("Amount")]
        public decimal Amount { get; set; } = 1000M;
    
        [Column("WechatOpenId")]
        public string WechatOpenId { get; set; }
    
        [Column("IsActive")]
        public bool IsActive { get; set; }
    }
  2. FluentApi (Recommended)

    You can use FluentApi for great flexibility

    for example:

    var setting = FluentSettings.For<TestEntity>();
    // ExcelSetting
    setting.HasAuthor("WeihanLi")
        .HasTitle("WeihanLi.Npoi test")
        .HasDescription("WeihanLi.Npoi test")
        .HasSubject("WeihanLi.Npoi test");
    
    setting.HasSheetConfiguration(0, "SystemSettingsList", true);
    // setting.HasSheetConfiguration(1, "SystemSettingsList", 1, true);
    
    // setting.HasFilter(0, 1).HasFreezePane(0, 1, 2, 1);
    
    setting.Property(_ => _.SettingId)
        .HasColumnIndex(0);
    
    setting.Property(_ => _.SettingName)
        .HasColumnTitle("SettingName")
        .HasColumnIndex(1);
    
    setting.Property(_ => _.DisplayName)
        .HasOutputFormatter((entity, displayName) => $"AAA_{entity.SettingName}_{displayName}")
        .HasInputFormatter((entity, originVal) => originVal.Split(new[] { '_' })[2])
        .HasColumnTitle("DisplayName")
        .HasColumnIndex(2);
    
    setting.Property(_ => _.SettingValue)
        .HasColumnTitle("SettingValue")
        .HasColumnIndex(3);
    
    setting.Property(_ => _.CreatedTime)
        .HasColumnTitle("CreatedTime")
        .HasColumnIndex(4)
        .HasColumnWidth(10)
        .HasColumnFormatter("yyyy-MM-dd HH:mm:ss");
    
    setting.Property(_ => _.CreatedBy)
        .HasColumnInputFormatter(x => x += "_test")
        .HasColumnIndex(4)
        .HasColumnTitle("CreatedBy");
    
    setting.Property(x => x.Enabled)
        .HasColumnInputFormatter(val => "Enabled".Equals(val))
        .HasColumnOutputFormatter(v => v ? "Enabled" : "Disabled");
    
    setting.Property("HiddenProp")
        .HasOutputFormatter((entity, val) => $"HiddenProp_{entity.PKID}");
    
    setting.Property(_ => _.PKID).Ignored();
    setting.Property(_ => _.UpdatedBy).Ignored();
    setting.Property(_ => _.UpdatedTime).Ignored();

More

see some articles here: https://weihanli.github.io/WeihanLi.Npoi/docs/articles/intro.html

more usage:

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 *.xls file
var workbook = PrepareWorkbook(bool isXls);

// prepare a workbook whether *.xls file and custom excel setting
var workbook = PrepareWorkbook(bool isXlsx, ExcelSetting excelSetting);
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)

void SetCellValue([NotNull] this ICell cell, object value)

byte[] ToCsvBytes<TEntity>(this IEnumerable<TEntity> entities, bool includeHeader)

ToCsvFile<TEntity>(this IEnumerable<TEntity> entities, string filePath, bool includeHeader)

void ToCsvFile(this DataTable dt, string filePath, bool includeHeader)

byte[] ToCsvBytes(this DataTable dt, bool includeHeader)

Samples

Acknowledgements

  • Thanks for the contributors and users for this project
  • Thanks JetBrains for the open source ReSharper license

Contact

Contact me: [email protected]

More Repositories

1

DbTool

数据库工具,根据表结构文档生成创建表sql,根据数据库表信息导出Model和表结构文档,根据文档生成数据库表,根据已有Model文件生成创建数据库表sql
C#
318
star
2

WeihanLi.Common

common tools, methods, extension methods, etc... .net 常用工具类,公共方法,常用扩展方法等,基础类库
C#
214
star
3

DesignPatterns

DesignPatterns samples by csharp on dotnetcore 《大话设计模式》 中设计模式总结/C#(.NET)代码
C#
111
star
4

StackExchange.Redis-docs-zh-cn

StackExchange.Redis中文使用文档
102
star
5

AccessControlHelper

AccessControlHelper for asp.net mvc and asp.net core, strategy based authorization
C#
74
star
6

SamplesInPractice

some samples in practice
C#
61
star
7

WeihanLi.EntityFramework

EntityFrameworkCore extensions
C#
58
star
8

SparkTodo

TodoList WebApi Powered by ASP.NET Core and JWT token auth
C#
47
star
9

WeihanLi.Redis

RedisExtensions for StackExchange.Redis, Cache/Redlock/Counter/RateLimiter/Rank/RedisEventBus
C#
46
star
10

dotnet-exec

dotnet execute with custom entry point, another dotnet run without project file
C#
37
star
11

dotnet-httpie

Amazing HTTP command-line tool powered by .NET, inspired by httpie
C#
26
star
12

ProxyCrawler

代理爬虫服务,爬取代理IP并保存到 Redis 中, topshelf+Quartz.Net+redis
C#
25
star
13

AspNetCorePlayground

AspNetCorePlayground
C#
23
star
14

WeihanLi.Web.Extensions

asp.net core web extensions
C#
15
star
15

MvcSimplePager

Simple,lightweight,easy to expand pager for asp.net mvc and asp.net core,针对asp.net mvc 和 asp.net core 设计的通用、扩展性良好的轻量级分页扩展
C#
13
star
16

docker-env

some docker images build environment
Dockerfile
12
star
17

XunitDependencyInjection.Samples

samples for https://github.com/pengweiqhca/Xunit.DependencyInjection
C#
9
star
18

WeihanLi.Extensions.Localization.Json

dotnetcore json based localization support
C#
7
star
19

WeihanLi.DataProtection

asp.net core data protection extensions
C#
7
star
20

weihanli.github.io

weihanli's personal homepage
TypeScript
7
star
21

OrmBenchmark

OrmBenchmark for .net framework and .net core
6
star
22

Markdown2HtmlTool

markdown2htmlTool markdown转换为html小工具
C#
5
star
23

AccountingApp

Accounting App Powered by asp.net core
C#
4
star
24

DbTool.Packages

DbTool packages source code
C#
4
star
25

roslyn-docs-zh-cn

【TODO】roslyn中文文档,原英文文档参考 https://github.com/dotnet/roslyn/tree/main/docs
3
star
26

markdown-syntax-summary

markdown 语法总结,包含基本的markdown语法和github支持的markdown语法
3
star
27

WeihanLi.Profile

weihanli's personal profile
2
star
28

PrivateSpaceDemo

ASP.NETMVC Demo website,ASP.NET Wechat Develop,ASP.NETMVC网站私密空间,ASP.NET MVC微信开发
JavaScript
2
star
29

dotnet-exec-action

Github action for dotnet-exec
C#
1
star
30

PublishPlatform

xx 项目发布平台 demo, asp.net core webapi + angular 9
TypeScript
1
star
31

WeihanLi.Templates

project templates for dotnet new
TypeScript
1
star
32

TechNotes

my tech notes about dotnet/arch
1
star
33

LeetCodeSolutions

LeetCodeSolutions powered by csharp
C#
1
star