Is there an easy way to execute queries in parallel? I have a query that has something like this:
delete from TableA where id = @id
delete from TableB where id = @id
delete from TableC where id = @id
...
and I want to do them in parallel. I can also use C#, though not sure how.