i want to combine several select sqls into 1 connections to the database (SQL Server). the queries will contain different tables data so it must not done using sql. basicly i want to do that follwoing
select * from Table1
Go
Select * from Table2
Go
Select * from Table3
then send this query to the database and the i want to result to be returned in one hit. so i can then read the data using 3 datareaders. is this possible using c# and sqlserver?