I have a C# console application that needs to call a WCF API for updating DB. Since the console application doesn't need to wait on the result of the WCF API, I would like to launch it asynchronously. What is the best way to do this?
Asked
Active
Viewed 31 times
0
-
Possible duplicate of [Asynchronously consume synchronous WCF service](https://stackoverflow.com/questions/22638828/asynchronously-consume-synchronous-wcf-service) – Polyfun Sep 06 '18 at 09:15
-
You can place your call into a different thread. in that case if main thread dies than your thread will continue work until it is finished. – Burim Hajrizaj Sep 06 '18 at 10:36