How do I assign an entitylist to a checked listbox?
I tried this and it works
myListBox.DataSource = controller.GetRecords();
but it doesn't display the column properly. How do I tell it to display the proper column like in a listbox where you have a displaymember and a value member? Is there an easy way to do it or do I have to loop through my entityList?
Bill