Commit ce1ce8d7 authored by Marc Gravell's avatar Marc Gravell Committed by GitHub

Merge pull request #618 from azyobuzin/FixIsConsumed

GridReader.IsConsumed wouldn't be true
parents 99e6b963 cc21e0c9
...@@ -215,6 +215,9 @@ private T ReadRow<T>(Type type, Row row) ...@@ -215,6 +215,9 @@ private T ReadRow<T>(Type type, Row row)
typeof(TSixth), typeof(TSixth),
typeof(TSeventh) typeof(TSeventh)
}, gridIndex); }, gridIndex);
IsConsumed = true;
try try
{ {
foreach (var r in MultiMapImpl<TFirst, TSecond, TThird, TFourth, TFifth, TSixth, TSeventh, TReturn>(null, default(CommandDefinition), func, splitOn, reader, identity, false)) foreach (var r in MultiMapImpl<TFirst, TSecond, TThird, TFourth, TFifth, TSixth, TSeventh, TReturn>(null, default(CommandDefinition), func, splitOn, reader, identity, false))
......
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