I want to do the same as this question but using the async process on another thread.
Asked
Active
Viewed 50 times
-1
-
Why would you want to do that? Exporting a BACPAC is something that has to finish before you do anything else in your program, unless you are trying to export multiple databases at the same time. – Panagiotis Kanavos Mar 13 '17 at 18:00
-
@PanagiotisKanavos Yeah that's exactly what I'm trying to do ... Any suggestions ? – Bernardo Campos Coutinho Mar 14 '17 at 12:22
1 Answers
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
-
2That would be appropriate for CPU bound work, but not for network bound work. – Servy Mar 13 '17 at 17:56