In version 2.0.8 of the library, this method always returns 0, even though the dataset contains records. In earlier versions of the library, the RowCount property worked correctly and returned the actual number of records.
Code example:
varcount=dataset.CurrentBatchRowCount();// variable count always contains 0varlist=newList<DataItem>(count);while(awaitdataset.HasNextAsync()){varrow=dataset.Next();list.Add(newDataItem(row,false));}
In version 2.0.8 of the library, this method always returns 0, even though the dataset contains records. In earlier versions of the library, the RowCount property worked correctly and returned the actual number of records.
Code example: