Hi,
I have 2 tables in a MySQL Database, combined with an 1:n relationship. Table1 has an auto incrementing id column.
My goal is to insert a row in table1 and as many rows as I want in table2. The rows in table2 should be linked to the one in table1. Table2 should be bound to a DataGrid for easy inserting. To minimize the work I'd like to use a DataSet with TableAdapters, DataTables and DataViews (so no manual query-writing is needed).
I've tried several approaches, but nothing really worked so far. At the moment I'm trying to insert a row in table1, get the id somehow and bind this id to the column in table2 associated with table1. But I cant get the id from the row. To insert the row in table1 I bind the UI-elements to a new DataRowView like this:
ClientManagerDataSet.CompanyDataTable companyDataTable = DataSetManager.CompanyTA.GetData();
companyDataRowView = companyDataTable.DefaultView.AddNew();
UiGrid.DataContext = companyDataRowView;
companyDataRowView.BeginEdit();
DataSetManager.CompanyTA //this is a static variable of the type CompanyTableAdapter
It would be so great if you could tell me how to get the id after inserting or how to get the DataSet to do the work. I'm stuck with this problem for 10 hours now and I really don't know what I should do.
Thanks a lot!