I am making progress on this database access stuff...
Here's what I need to do:
I have an existing DataSet(and therefore a DataTable) that is defined in the class namespace, and I am trying to make a function that allows the user to pick from a list of items, and use the SelectedItem.Value
(which contains a unique Primary Key from the Database) to show more information about the item that is selected. I believe I need to search through the DataSet and read it into something like a DataRow so that I can display the values from that(there is a way to do this based on column name, correct?)
I just can't figure out how to say "copy/select the row whose primary key "partnumber" is equal to SelectedItem.Value
"