no

How to Solve Multiple Active Datareader Session in Mvc3 C#

This problem commonly happens when you try to execute a query with a return type of IEnumerable then execute a second query with the result....

This problem commonly happens when you try to execute a query with a return type of IEnumerable then execute a second query with the result.

Example, we have a table Animes:

public IEnumerable GetAnimes() {
  return context.Animes;
}

//on the second part of the code we invoke GetAnimes and perform a second sql query;
var animes = GetAnimes(); //line 1
foreach(var anime in animes) { //line 2
  context.Animes.Remove(context.Animes.FirstOrDefault(p=>p == anime)); //line 3
}

The above code will certainly fail. And might throw any of the ff errors:
1.) There is already an open DataReader associated with this Command which must be closed first.
2.) New transaction is not allowed because there are other threads running in the session
Why does this happen? It's because of deferred sql execution. Heard about that? If you think line 1 has already execute its query against the database you're wrong, it just prefer the query for execution. So when you try to execute line 3 it fails, because line 1 is still active.
To resolve this issue, make sure to close the first session before executing the next, by simply adding .ToList() call to line 2.
Also you might want to add MultipleActiveResultSets=True to the connectionString setting.

Related

c# 6459708251941268939

Post a Comment Default Comments

item