-1

SQL Azure BACPAC extraction

I want to do the same as this question but using the async process on another thread.

Community
  • 1
  • 1

1 Answers1

0

If you're just looking for "an async process on another thread" you could use tasks.

        Task.Run(() =>
        {
           //Your code here.
        });
Mario Guadagnin
  • 476
  • 7
  • 17