I'm using Dapper dot net to execute a stored procedure that returns 4 result sets. Here's how I'm doing it:
public Results Search(Query query)
{
if (query == null) throw new ArgumentNullException("query");
Results results;
var q = _sqlConnection.QueryMultiple("MySchema.MySproc", query,
commandType: CommandType.StoredProcedure);
{
results = q.Read<Results>().First();
results.CheckAlertResults = q.Read<Results.CheckAlertResult>().ToArray(); // Cannot access a disposed object.Object name: 'GridReader'.
results.PersonAlertResultRows = q.Read<Results.PersonAlertResultRow>().ToArray();
results.RoutingAlertResults = q.Read<Results.RoutingAlertResult>().ToArray();
}
return results;
}
The first result set will only contain 1 row. It corresponds to a couple of primitive properties on my Results class.
The other 3 result sets will have many rows and will populate 3 complex array properties on the Results class.
For some reason, I'm getting
Cannot access a disposed object.Object name: 'GridReader'.
Check my code to see where.
I have verified that the procedure is working correctly when called from LinqPad, which uses Linq2Sql.
What am I doing wrong?