G
Guest
Using the typed dataset designer, I dragged an existing stored procedure onto
it which has several select statements in it
For simplicity, something like:
select * from table1
select * from table2
select * from table3
It seems the designer generates on datatable based on the first select
statement only.
How do I return the entire dataset and iterate through the tables? Based on
code I've seen below, you can only return on databable? Thanks for any help
on this.
NorthwindDataSetTableAdapters.CustomersTableAdapter customersTableAdapter =
new NorthwindDataSetTableAdapters.CustomersTableAdapter();
customersTableAdapter.Fill(northwindDataSet.Customers);
it which has several select statements in it
For simplicity, something like:
select * from table1
select * from table2
select * from table3
It seems the designer generates on datatable based on the first select
statement only.
How do I return the entire dataset and iterate through the tables? Based on
code I've seen below, you can only return on databable? Thanks for any help
on this.
NorthwindDataSetTableAdapters.CustomersTableAdapter customersTableAdapter =
new NorthwindDataSetTableAdapters.CustomersTableAdapter();
customersTableAdapter.Fill(northwindDataSet.Customers);