This commit is contained in:
2020-01-17 20:53:46 +00:00
parent 037ce37b9d
commit b4853777ea
3 changed files with 13 additions and 17 deletions

View File

@@ -69,12 +69,15 @@ namespace AyaNova.Biz
sb.Append(", ");
sb.Append(o.GetSqlDisplayColumnName());
//does it also have an ID column?
if (!string.IsNullOrWhiteSpace(o.SqlIdColumnName))
{
sb.Append(", ");
sb.Append(o.SqlIdColumnName);
}
}
}
return sb.ToString();
}