Hi folks,
I'm a complete newbie in using this tool. Basically I am trying to have three datagrids, one each for Customers, Orders, and OrderDetails. When I was using datasets with relationships between the tables within I was able to populate bind to the datagrids and navigate through them without trapping events or using currencymanagers.
Here's my code in attempt to replicate this with the generated code:
private void Form1_Load(object sender, System.EventArgs e)
{
//Embarassingly stupid bits of code deleted (phew!)
//Repeat after me..."I did not see anything!"
}
I successfully did it with Customers and Orders, i.e. selecting a different row in dgCustomers automatically bring up the relevant Order entities. It didn't work for Orders and OrderDetails though.
I have to admit I'm not sure what I'm doing here
Any help would be immensely appreciated.
Cheers,
Dany.