I would like to know if there is way that I can run multiple SELECT queries or stored procedures in parallel? For a long time I was using one stored procedure which looks like below:
SELECT 1.......
SELECT 2 .......
SELECT 3 .......
Then I got DataSet with multiple DataTables.
Now I would like to run each SELECT statements parallel. I am not sure if I can do this using the same SqlConnection or if I have to use a separate connection for each query?
Do I have to use threads?