I have a stored procedure that contains 15 simple select statements. Whenever I try to create a typed DataSet, it only creates a DataTable for the first result. Is there a way to make the tool create a DataTable for each result in the DataSet
Interesting. I don't need relationships and constraints in the typed DataSet, so this could get me what I want. All I've been doing thus far is creating a typed DataSet and dragging the StoredProcedure onto the DataSet designer, which results in only the first table. Is there a different way to do this using a DataAdapter that will create an "unmarried" table for each SELECT in my stored procedure
Typed DataSet for multi-result Stored Procedure
ZMAN!!
Nope.
While the DataAdapter can create N tables based on the SELECT statements executed, the TableAdapter is designed to expose a single (unmarried) table.
Evangelos