I have a Store Procedure in SQL Server that projects multiple data. Example:
CREATE PROCEDURE [dbo].[teste_sp]
AS
BEGIN
select * from compra
select * from cliente
select * from fatura
END
However, when retrieving the DataSet in C #, table names are shown as: "Table1", "Table2" and "Table3".
Is there any way to name these tables dynamically?