This commit is contained in:
2020-12-16 18:17:01 +00:00
parent b96d0b95c4
commit fde01864c7
3 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ namespace AyaNova.DataList
//Developers little helper
if (o == null)
{
throw new System.ArgumentNullException($"DEV ERROR in DataListSqlSelectBuilder.cs:Build() field {ColumnName} specified in template was NOT found in ObjectFields list");
throw new System.ArgumentNullException($"## DEV ERROR in DataListSqlSelectBuilder.cs:Build() field {ColumnName} specified in datalist view was NOT found in the data list's ObjectFields list, a defined fieldkey name differs from the ListView field key name");
}
#endif
if (o != null)

View File

@@ -92,7 +92,7 @@ namespace AyaNova.DataList
FieldDefinitions.Add(new AyaDataListFieldDefinition
{
TKey = "ProjectAccountNumber",
FieldKey = "projectaccountnumber",
FieldKey = "ProjectAccountNumber",
UiFieldDataType = (int)UiFieldDataType.Text,
SqlValueColumnName = "aproject.accountnumber"
});