Create Strongly Typed Dataset for a stored procedure that return more than one table
问题 I have a stored procedure that performs 3 select. How do I create a strongly typed dataset that can access all the 3 tables and read the data. Visual studio by default generates a dataset with the 1st table only I have already tried using visual studio Typed Dataset, to drag and drop the Stored Procedure. Stored procedure is something like this: Create Procedure GetData As Begin Select ColA, ColB, ColC from TableA Select ColD, ColE, ColF from TableB Select ColG, ColH, ColI from TableC End 回答1