Open
Description
Hi,
We are working with many rows and we need to read data row by row.
The stateful session Enumerable()
method provides an EnumerableImpl
and we can use enumerable.MoveNext()
and it returns the next row with Reader.Read()
.
But the stateless Session Enumerable()
method does not provide an EnumerableImpl
, it returns a "Method not implemented" exception.
Are you considering adding this implementation?