This commit is contained in:
2020-12-21 17:31:29 +00:00
parent 0b86a63417
commit efee8021ff
4 changed files with 29 additions and 5 deletions

View File

@@ -190,6 +190,13 @@ namespace AyaNova.DataList
AyaField.ot = dr.GetInt32(ordinal);
}
if (f.SqlColorColumnName != null)
{
var ordinal = SelectBuild.map[f.SqlColorColumnName];
if (!await dr.IsDBNullAsync(ordinal))
AyaField.clr = dr.GetInt32(ordinal);
}
row.Add(AyaField);
}
}