My winform application requires to query database (via stored procedures) frequently to retrieve any new updates. This is currently done through background worker thread. The problem is that sometimes stored procedures takes a long time which means (per my understanding ) that we are wasting threadpool thread resource as all its doing is just waiting for db call to complete. I was just wondering if there are any better ways of handling this (something like APM begin/end type of calls)?

有帮助吗?

解决方案

You can use the BeginExecuteReader method to make an asynchronous datebase call.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top