Skip to content

Latest commit

 

History

35 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flexcel

Fluent library for excel exporting

Show me the code

Specific fields of model, field2 with custom title

// MyModel model;
ExcelFilesCreator.NewExcel()
                 .AddSheetAndSelect<MyModel>()
				 .AddColumn(m => m.Field1)
				 .AddColumn(m => m.Field2, "Another field")
				 .AddRow(model)
				 .ToFile(filePath);

All model fields

// MyModel model;
ExcelFilesCreator.NewExcel()
                 .AddSheetAndSelect<MyModel>()
				 .AddRow(model)
				 .ToFile(filePath);

Allows you export to:

  • .ToByteArray()
  • .ToFile(filePath)
  • .ToFileAsync(filePath)
  • .ToMemoryStream()

or get EpPlus package: .GetPackage()

About

Fluent library for excel exporting

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages