I was under the assumption that StartNew only used a thread from the ThreadPool while work was actually being done and would release it when it was waiting. For example:
Task.Factory.Startnew() {
() => {
..
var dr = cmd.ExecuteReader();
while (dr.Read())
{
..
}
}
}
So say above the cmd.ExecuteReader() was a very slow stored procedure that took 10 minutes to run. I thought the TPL would release the thread back to the pool and not hold onto the thread the entire time. Is this incorrect? If not what is the big advantage of the TPL approcach to say a background worker thread. I started thinking my assumptions weren't true after reading Stephen Toub's post.