Class ExcelHelper
ExcelHelper
public static class ExcelHelper
- Inheritance
-
ExcelHelper
- Inherited Members
Properties
DefaultDataValidator
Default Data Validator
public static IValidator DefaultDataValidator { get; set; }
Property Value
- IValidator
DefaultExcelSetting
Default excel setting for export excel files
public static ExcelSetting DefaultExcelSetting { get; set; }
Property Value
Methods
LoadExcel(byte[])
load excel from excelBytes
public static IWorkbook LoadExcel(byte[] excelBytes)
Parameters
excelBytes
byte[]excel file bytes
Returns
- IWorkbook
workbook
LoadExcel(byte[], ExcelFormat)
load excel from excelBytes
public static IWorkbook LoadExcel(byte[] excelBytes, ExcelFormat excelFormat)
Parameters
excelBytes
byte[]excel file bytes
excelFormat
ExcelFormatexcelFormat
Returns
- IWorkbook
workbook
LoadExcel(Stream)
load excel from excelBytes
public static IWorkbook LoadExcel(Stream excelStream)
Parameters
excelStream
Streamexcel file stream
Returns
- IWorkbook
workbook
LoadExcel(Stream, ExcelFormat)
load excel from excelBytes
public static IWorkbook LoadExcel(Stream excelStream, ExcelFormat excelFormat)
Parameters
excelStream
Streamexcel file stream
excelFormat
ExcelFormatexcelFormat
Returns
- IWorkbook
workbook
LoadExcel(string)
load excel from filepath
public static IWorkbook LoadExcel(string excelPath)
Parameters
excelPath
stringexcel file path
Returns
- IWorkbook
workbook
PrepareWorkbook()
get a excel workbook(*.xlsx)
public static IWorkbook PrepareWorkbook()
Returns
PrepareWorkbook(bool)
get a excel workbook
public static IWorkbook PrepareWorkbook(bool isXlsx)
Parameters
isXlsx
boolis for *.xlsx file
Returns
PrepareWorkbook(bool, ExcelSetting?)
get a excel workbook
public static IWorkbook PrepareWorkbook(bool isXlsx, ExcelSetting? excelSetting)
Parameters
isXlsx
boolis for *.xlsx file
excelSetting
ExcelSettingexcelSettings
Returns
PrepareWorkbook(string)
prepare a workbook for export
public static IWorkbook PrepareWorkbook(string excelPath)
Parameters
excelPath
stringexcelPath
Returns
PrepareWorkbook(string, ExcelSetting?)
prepare a workbook for export
public static IWorkbook PrepareWorkbook(string excelPath, ExcelSetting? excelSetting)
Parameters
excelPath
stringexcelPath
excelSetting
ExcelSettingexcelSetting
Returns
PrepareWorkbook(ExcelFormat)
get a excel workbook
public static IWorkbook PrepareWorkbook(ExcelFormat excelFormat)
Parameters
excelFormat
ExcelFormatexcelFormat
Returns
PrepareWorkbook(ExcelFormat, ExcelSetting?)
prepare a workbook for export
public static IWorkbook PrepareWorkbook(ExcelFormat excelFormat, ExcelSetting? excelSetting)
Parameters
excelFormat
ExcelFormatexcelFormat
excelSetting
ExcelSettingexcelSetting
Returns
ToDataSet(string)
read first sheet of excel from excel file path to a DataSet from second row
public static DataSet ToDataSet(string excelPath)
Parameters
excelPath
stringexcelPath
Returns
ToDataSet(string, int)
read first sheet of excel from excel file path to a DataSet from (headerRowIndex+1) row
public static DataSet ToDataSet(string excelPath, int headerRowIndex)
Parameters
Returns
ToDataTable(byte[], ExcelFormat, bool, int?)
read first sheet of excel from excelBytes to a data table
public static DataTable ToDataTable(byte[] excelBytes, ExcelFormat excelFormat, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
excelBytes
byte[]excelBytes
excelFormat
ExcelFormatremoveEmptyRows
boolremoveEmptyRows
maxColumns
int?maxColumns
Returns
- DataTable
DataTable
ToDataTable(byte[], ExcelFormat, int, bool, int?)
read (sheetIndex) sheet of excel from excelBytes to a data table
public static DataTable ToDataTable(byte[] excelBytes, ExcelFormat excelFormat, int sheetIndex, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
excelBytes
byte[]excelBytes
excelFormat
ExcelFormatsheetIndex
intsheetIndex
removeEmptyRows
boolremoveEmptyRows
maxColumns
int?maxColumns
Returns
- DataTable
DataTable
ToDataTable(byte[], ExcelFormat, int, int, bool, int?)
read (sheetIndex) sheet of excel from excelBytes to a data table
public static DataTable ToDataTable(byte[] excelBytes, ExcelFormat excelFormat, int sheetIndex, int headerRowIndex, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
excelBytes
byte[]excelBytes
excelFormat
ExcelFormatsheetIndex
intsheetIndex
headerRowIndex
intheaderRowIndex
removeEmptyRows
boolremoveEmptyRows
maxColumns
int?maxColumns
Returns
- DataTable
DataTable
ToDataTable(string)
read first sheet of excel from excel file path to a data table
public static DataTable ToDataTable(string excelPath)
Parameters
excelPath
stringexcelPath
Returns
- DataTable
DataTable
ToDataTable(string, int)
read first sheet of excel from excel file path to a data table
public static DataTable ToDataTable(string excelPath, int sheetIndex)
Parameters
Returns
- DataTable
DataTable
ToDataTable(string, int, int, bool, int?)
read (sheetIndex) sheet of excel from excel file path to a data table
public static DataTable ToDataTable(string excelPath, int sheetIndex, int headerRowIndex, bool removeEmptyRows = false, int? maxColumns = null)
Parameters
excelPath
stringexcelPath
sheetIndex
intsheetIndex
headerRowIndex
intheaderRowIndex
removeEmptyRows
boolremoveEmptyRows
maxColumns
int?maxColumns
Returns
- DataTable
DataTable
ToDataTable<TEntity>(string)
read first sheet of excel from excel file path to a data table
public static DataTable ToDataTable<TEntity>(string excelPath) where TEntity : new()
Parameters
excelPath
stringexcelPath
Returns
- DataTable
DataTable
Type Parameters
TEntity
EntityType
ToDataTable<TEntity>(string, int)
read (sheetIndex) sheet of excel from excel file path to a list(for specific class type)
public static DataTable ToDataTable<TEntity>(string excelPath, int sheetIndex) where TEntity : new()
Parameters
Returns
- DataTable
DataTable
Type Parameters
TEntity
EntityType
ToEntities<TEntity>(byte[], ExcelFormat, int)
public static IEnumerable<TEntity?> ToEntities<TEntity>(byte[] excelBytes, ExcelFormat excelFormat = ExcelFormat.Xls, int sheetIndex = 0) where TEntity : new()
Parameters
excelBytes
byte[]excelFormat
ExcelFormatsheetIndex
int
Returns
- IEnumerable<TEntity>
Type Parameters
TEntity
ToEntities<TEntity>(Stream, ExcelFormat, int)
public static IEnumerable<TEntity?> ToEntities<TEntity>(Stream excelStream, ExcelFormat excelFormat = ExcelFormat.Xls, int sheetIndex = 0) where TEntity : new()
Parameters
excelStream
StreamexcelFormat
ExcelFormatsheetIndex
int
Returns
- IEnumerable<TEntity>
Type Parameters
TEntity
ToEntities<TEntity>(string, int)
public static IEnumerable<TEntity?> ToEntities<TEntity>(string excelPath, int sheetIndex) where TEntity : new()
Parameters
Returns
- IEnumerable<TEntity>
Type Parameters
TEntity
ToEntityListWithValidationResult<TEntity>(byte[], ExcelFormat, int, IValidator<TEntity>?)
read (sheetIndex) sheet of excel from excel bytes to a list
public static (List<TEntity?> EntityList, Dictionary<int, ValidationResult> ValidationResults) ToEntityListWithValidationResult<TEntity>(byte[] excelBytes, ExcelFormat excelFormat = ExcelFormat.Xls, int sheetIndex = 0, IValidator<TEntity>? validator = null) where TEntity : new()
Parameters
excelBytes
byte[]excelBytes
excelFormat
ExcelFormatexcelFormat
sheetIndex
intsheetIndex
validator
IValidator<TEntity>validator
Returns
- (List<TEntity> EntityList, Dictionary<int, ValidationResult> ValidationResults)
List and validationResult
Type Parameters
TEntity
EntityType
ToEntityListWithValidationResult<TEntity>(Stream, ExcelFormat, int, IValidator<TEntity>?)
read (sheetIndex) sheet of excel from excel bytes path to a list
public static (List<TEntity?> EntityList, Dictionary<int, ValidationResult> ValidationResults) ToEntityListWithValidationResult<TEntity>(Stream excelStream, ExcelFormat excelFormat = ExcelFormat.Xls, int sheetIndex = 0, IValidator<TEntity>? validator = null) where TEntity : new()
Parameters
excelStream
StreamexcelStream
excelFormat
ExcelFormatexcelFormat
sheetIndex
intsheetIndex
validator
IValidator<TEntity>data validator
Returns
- (List<TEntity> EntityList, Dictionary<int, ValidationResult> ValidationResults)
List
Type Parameters
TEntity
EntityType
ToEntityListWithValidationResult<TEntity>(string, int, IValidator<TEntity>?)
read (sheetIndex) sheet of excel from excel file path to a list
public static (List<TEntity?> EntityList, Dictionary<int, ValidationResult> ValidationResults) ToEntityListWithValidationResult<TEntity>(string excelPath, int sheetIndex = 0, IValidator<TEntity>? validator = null) where TEntity : new()
Parameters
Returns
- (List<TEntity> EntityList, Dictionary<int, ValidationResult> ValidationResults)
List and validationResult
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(byte[])
read first sheet of excel from excel file bytes to a list
public static List<TEntity?> ToEntityList<TEntity>(byte[] excelBytes) where TEntity : new()
Parameters
excelBytes
byte[]excelBytes
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(byte[], int)
read (sheetIndex) sheet of excel from excel file bytes to a list
public static List<TEntity?> ToEntityList<TEntity>(byte[] excelBytes, int sheetIndex) where TEntity : new()
Parameters
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(byte[], ExcelFormat)
read first sheet of excel from excel file bytes to a list
public static List<TEntity?> ToEntityList<TEntity>(byte[] excelBytes, ExcelFormat excelFormat) where TEntity : new()
Parameters
excelBytes
byte[]excelBytes
excelFormat
ExcelFormatexcelFormat
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(byte[], ExcelFormat, int)
read (sheetIndex) sheet of excel from excel bytes to a list
public static List<TEntity?> ToEntityList<TEntity>(byte[] excelBytes, ExcelFormat excelFormat, int sheetIndex) where TEntity : new()
Parameters
excelBytes
byte[]excelBytes
excelFormat
ExcelFormatexcelFormat
sheetIndex
intsheetIndex
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(Stream)
read first sheet of excel from excel stream to a list
public static List<TEntity?> ToEntityList<TEntity>(Stream excelStream) where TEntity : new()
Parameters
excelStream
StreamexcelStream
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(Stream, int)
read (sheetIndex) sheet of excel from excel file bytes to a list
public static List<TEntity?> ToEntityList<TEntity>(Stream excelStream, int sheetIndex) where TEntity : new()
Parameters
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(Stream, ExcelFormat)
read first sheet of excel from excel file bytes to a list
public static List<TEntity?> ToEntityList<TEntity>(Stream excelStream, ExcelFormat excelFormat) where TEntity : new()
Parameters
excelStream
StreamexcelStream
excelFormat
ExcelFormatexcelFormat
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(Stream, ExcelFormat, int)
read (sheetIndex) sheet of excel from excel bytes path to a list
public static List<TEntity?> ToEntityList<TEntity>(Stream excelStream, ExcelFormat excelFormat, int sheetIndex) where TEntity : new()
Parameters
excelStream
StreamexcelStream
excelFormat
ExcelFormatexcelFormat
sheetIndex
intsheetIndex
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(string)
read first sheet of excel from excel file path to a list
public static List<TEntity?> ToEntityList<TEntity>(string excelPath) where TEntity : new()
Parameters
excelPath
stringexcelPath
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType
ToEntityList<TEntity>(string, int)
read (sheetIndex) sheet of excel from excel file path to a list
public static List<TEntity?> ToEntityList<TEntity>(string excelPath, int sheetIndex) where TEntity : new()
Parameters
Returns
- List<TEntity>
List
Type Parameters
TEntity
EntityType