update 20211204

This commit is contained in:
2021-12-04 13:07:38 +01:00
parent f0289af9fe
commit 70148e63ce
164 changed files with 24669 additions and 3789 deletions

View File

@@ -176,7 +176,15 @@ namespace BlazorApp.Helper
foreach (PropertyInfo pro in temp.GetProperties())
{
if (pro.Name == column.ColumnName)
pro.SetValue(obj, dr[column.ColumnName], null/* TODO Change to default(_) if this is not a reference type */);
try
{
pro.SetValue(obj, dr[column.ColumnName], null/* TODO Change to default(_) if this is not a reference type */);
}
catch
{ }
else
continue;
}