Error attempting to dump second ExecuteQueryDynamic statement to DataGrid
Simple example using NorthWind database to illustrate error.
This is using v5.28.05.
this.ExecuteQueryDynamic("select * from Customers").Dump("Customers", true);The first line works fine, but the second throws an exception
this.ExecuteQueryDynamic("select * from Suppliers").Dump("Suppliers", true);
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