Commit 23f5cf64 authored by Billy Ramos's avatar Billy Ramos

IsConsumed bool field for MultiQuery

parent 621e7375
...@@ -3728,6 +3728,13 @@ private IEnumerable<T> ReadDeferred<T>(int index, Func<IDataReader, object> dese ...@@ -3728,6 +3728,13 @@ private IEnumerable<T> ReadDeferred<T>(int index, Func<IDataReader, object> dese
} }
private int gridIndex, readCount; private int gridIndex, readCount;
private bool consumed; private bool consumed;
public bool IsConsumed
{
get
{
return consumed;
}
}
private void NextResult() private void NextResult()
{ {
if (reader.NextResult()) if (reader.NextResult())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment