I have a combo box in my Configurator that I need to populate with materials that are in a specific part class and associated to an operation in my SuperMOM. I did this originally with a BAQ but there isn’t any way to pass parameters from Configurator so I set out to do it with a user defined method using Linq. My method is returning a string array, however, it appears that dynamic lists only accept methods that return a string.
How do I implement a user defined method that can populate a dynamic list in Configurator with an array of strings? Can this only be done via code in OnFieldChange of the combo box that drives the criteria for my materials? If so, what is the best practice for populating a combo box from a string array in C#?