This commit is contained in:
Jonathan Jenne
2022-06-29 09:24:29 +02:00
parent 9e77be80e7
commit ad289ae666
3 changed files with 16 additions and 17 deletions

View File

@@ -44,10 +44,10 @@ Public Class SearchLoader
For Each oRow As DataRow In oTable.Rows
oAttributes.Add(New SearchAttribute With {
.Id = oRow.Item("GUID"),
.Caption = oRow.Item("CAPTION"),
.Description = oRow.Item("DESCRIPTION"),
.DataType = oRow.Item("DATA_TYPE")
.Id = oRow.ItemEx("GUID", 0),
.Caption = oRow.ItemEx("CAPTION", String.Empty),
.Description = oRow.ItemEx("DESCRIPTION", String.Empty),
.DataType = oRow.ItemEx("DATA_TYPE", "VARCHAR")
})
Next