|
@@ -19,7 +19,7 @@ public class ExcelWriter : IDisposable
|
|
xlWorkbook = workbook ?? throw new ArgumentNullException(nameof(workbook));
|
|
xlWorkbook = workbook ?? throw new ArgumentNullException(nameof(workbook));
|
|
}
|
|
}
|
|
|
|
|
|
- private static int GenerateHeader<T>(IXLWorksheet worksheet, PropertyInfo[] properties) where T : class
|
|
|
|
|
|
+ private static int GenerateHeader(IXLWorksheet worksheet, PropertyInfo[] properties)
|
|
{
|
|
{
|
|
var rowIndex = 1;
|
|
var rowIndex = 1;
|
|
var cellIndex = 1;
|
|
var cellIndex = 1;
|
|
@@ -56,7 +56,7 @@ public class ExcelWriter : IDisposable
|
|
if (property.Skip()) continue;
|
|
if (property.Skip()) continue;
|
|
|
|
|
|
var mapped = mapping.FirstOrDefault(x => x.PropertyName != null && x.PropertyName.Equals(property.Name));
|
|
var mapped = mapping.FirstOrDefault(x => x.PropertyName != null && x.PropertyName.Equals(property.Name));
|
|
- if (mapped == null || mapped.Position == null) continue;
|
|
|
|
|
|
+ if (mapped?.Position == null) continue;
|
|
|
|
|
|
WriteCell(value, property, worksheet.Cell(rowIndex, mapped.Position.Value));
|
|
WriteCell(value, property, worksheet.Cell(rowIndex, mapped.Position.Value));
|
|
}
|
|
}
|
|
@@ -90,7 +90,7 @@ public class ExcelWriter : IDisposable
|
|
mapping = Mapping.MapProperties<T>(headerCells);
|
|
mapping = Mapping.MapProperties<T>(headerCells);
|
|
if (mapping == null || mapping.Count == 0) return;
|
|
if (mapping == null || mapping.Count == 0) return;
|
|
} else
|
|
} else
|
|
- rowIndex = GenerateHeader<T>(worksheet, properties);
|
|
|
|
|
|
+ rowIndex = GenerateHeader(worksheet, properties);
|
|
|
|
|
|
if (rowIndex == null) throw new NullReferenceException(nameof(rowIndex));
|
|
if (rowIndex == null) throw new NullReferenceException(nameof(rowIndex));
|
|
|
|
|
|
@@ -130,7 +130,7 @@ public class ExcelWriter : IDisposable
|
|
{
|
|
{
|
|
if (disposing)
|
|
if (disposing)
|
|
{
|
|
{
|
|
- xlWorkbook?.Dispose();
|
|
|
|
|
|
+ xlWorkbook.Dispose();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
~ExcelWriter() => Dispose(false);
|
|
~ExcelWriter() => Dispose(false);
|