This is thread deadlock issue. To avoid this issue, you should use ConfigureAwait(false) to make the runtime continue in a different thread.
await Task.WhenAll(aAsync, bAsync).ConfigureAwait(false);
The .NET Framework and ASP.NET help you create web applications and services for Windows.
await Task.WhenAll(aAsync, bAsync).ConfigureAwait(false);
I had more than 4000 items in searchable dropdownlist. I have used react-select but it was very slow. finally I found complete solution to ...
No comments:
Post a Comment