I see that we can call:
public RowSet ExecuteRowSet(string statement, int? pageSize = null)
{
return pageSize.HasValue ? _session.Execute(statement, pageSize.Value) : _session.Execute(statement);
}
but we cannot call:
public RowSet ExecuteRowSet(BoundStatement statement, int? pageSize = null)
{
return pageSize.HasValue ? _session.Execute(statement, pageSize.Value) : _session.Execute(statement);
}
Why is pageSize not provided for a BoundStatement?
If you want to use a page size, you can use the SetPageSize method on the statement class. So for a bound statement, this might look like:
Note: this is to take advantage of the automatic paging feature in the driver and not for manual paging scenarios like showing a paging UI in an application. The other overload you mention is just a shortcut/convenience method for quickly executing CQL and optionally using automatic paging. It's basically equivalent to doing:
Hope that helps.