Question

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)?

Était-ce utile?

La solution

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top