I'm brand new to WPF. I have a combo box that I want to fill with the names of the columns of a database. I have seen from other posts that
select *
from MyDatabaseName.information_schema.columns
order by table_name, ordinal_position
will give you the names of the table, but how do I then add each element to the combo box?