Automation Script – Lookup by Display Key
5th May 2025
Hi Nick, Instead of: var indexKey = (int)filter.FilterType == DisplayFilter ? protocol.FindAssociatedDisplayKeyColumn(tableInfo) : protocol.FindAssociatedPrimaryKeyColumn(tableInfo); var column = element.GetTable(tableInfo.ID).GetColumn<string>(indexKey.ID); Have you tried: var column = (int)filter.FilterType == DisplayFilter ? element.GetTable(tableInfo.ID).GetDisplayKeys() : …