5
How would my application behave in a scenario where I perform an asynchronous query in the database and then manipulate the returned value? The application would wait for the query to be finalised or would continue the flow of execution normally?
int id = await GetById();
if (id == 20)
...
Look at this question. Can you clarify something else for you. :)
– George Wurthmann