This commit is contained in:
2020-01-21 21:02:02 +00:00
parent e0597e59ed
commit 1c73d9c422
4 changed files with 86 additions and 22 deletions

View File

@@ -38,7 +38,7 @@ namespace AyaNova.DataList
AyaDataListFieldDefinition def = objectFieldsList.FirstOrDefault(x => x.FieldKey == "df");
if (def == null)
{
throw new System.ArgumentNullException("SqlSelectBuilder: objectFieldList is missing the df default field");
throw new System.ArgumentNullException("DataListSqlSelectBuilder: objectFieldList is missing the df default field");
}
if (string.IsNullOrEmpty(def.SqlIdColumnName))
{
@@ -58,7 +58,7 @@ namespace AyaNova.DataList
//Developers little helper
if (o == null)
{
throw new System.ArgumentNullException($"DEV ERROR in SqlSelectBuilder.cs: field {ColumnName} specified in template was NOT found in ObjectFields list");
throw new System.ArgumentNullException($"DEV ERROR in DataListSqlSelectBuilder.cs: field {ColumnName} specified in template was NOT found in ObjectFields list");
}
#endif
if (o != null)