Answers for "invalidoperationexception: there is already an open datareader associated with this command which must be closed first. in entity framework"

C#
4

There is already an open DataReader associated with this Command which must be closed first.

Add this to your connection string:
MultipleActiveResultSets=true;
Posted by: Guest on May-19-2021
3

There is already an open DataReader associated with this Command which must be closed first c#

<connectionStrings>
    <add name="IdentityConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\IdentityDb.mdf;Integrated Security=True;MultipleActiveResultSets=true;" providerName="System.Data.SqlClient" />
  </connectionStrings>
Posted by: Guest on February-26-2020

Code answers related to "invalidoperationexception: there is already an open datareader associated with this command which must be closed first. in entity framework"

C# Answers by Framework

Browse Popular Code Answers by Language