|
@@ -31,12 +31,18 @@ public class ExcelReader
|
|
var property = current.GetType().GetProperty(item.PropertyName);
|
|
var property = current.GetType().GetProperty(item.PropertyName);
|
|
if (property == null) continue;
|
|
if (property == null) continue;
|
|
|
|
|
|
- switch (property.PropertyType)
|
|
|
|
|
|
+ object? valueToSet = property.PropertyType switch
|
|
{
|
|
{
|
|
- case not null when property.PropertyType == typeof(string):
|
|
|
|
- property.SetValue(current, cell.Value.ToString());
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
|
|
+ not null when property.PropertyType == typeof(string) => cell.Value.ToString(),
|
|
|
|
+ not null when property.PropertyType == typeof(DateTime?) => cell.Value.IsDateTime ? cell.Value.GetDateTime() : null,
|
|
|
|
+ not null when property.PropertyType == typeof(TimeSpan?) => cell.Value.IsTimeSpan ? cell.Value.GetTimeSpan() : null,
|
|
|
|
+ not null when property.PropertyType == typeof(double?) => cell.Value.IsNumber ? cell.Value.GetNumber() : null,
|
|
|
|
+ not null when property.PropertyType == typeof(int?) => cell.Value.IsNumber ? (int?)cell.Value.GetNumber() : null,
|
|
|
|
+ _ => throw new NotSupportedException($"{property.PropertyType} isn't supported!")
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ if (valueToSet != null)
|
|
|
|
+ property.SetValue(current, valueToSet);
|
|
}
|
|
}
|
|
|
|
|
|
yield return current;
|
|
yield return current;
|