문제

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