Simple example using NorthWind database to illustrate error.
this.ExecuteQueryDynamic("select * from Customers").Dump("Customers", true);
this.ExecuteQueryDynamic("select * from Suppliers").Dump("Suppliers", true);
The first line works fine, but the second throws an exception
InvalidOperationException: There is already an open DataReader associated with this Command which must be closed first.
Works find if dumping to rich text/html and also works if using this.ExecuteQuery.
This is using v5.28.05.
Comments