rdasgupta7141
rdasgupta7141
Here is my code but it does not seem to download anything. Also advise how to download as an excel with the column header and filtered subset on the table....
I need to add some validations to the parsing Excel to DataTable process. for (int i = firstDataRow; i < sheet.PhysicalNumberOfRows; i++) { var sheetRow = sheet.GetRow(i); if (sheetRow ==...
var bulkConfig = new BulkConfig { SetOutputIdentity = true, PropertiesToExclude = new List { nameof(Entity.DocumentId) }, UpdateByProperties = new List { nameof(Entity.FADNumber) } }; await _context.BulkInsertOrUpdateAsync(entityList, bulkConfig); BulkInsertOrUpdateAsync is NOT...