/// <summary> /// Lists the rows within this table, similar to a <c>SELECT * FROM ...</c> query. /// This method just creates a <see cref="TableReference"/> and delegates to <see cref="BigqueryClient.ListRows(TableReference, TableSchema, ListRowsOptions)"/>. /// </summary> /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param> /// <returns>The results of listing the rows within the table.</returns> public IPagedEnumerable <TableDataList, BigqueryRow> ListRows(ListRowsOptions options = null) => _client.ListRows(Reference, Schema, options);
/// <summary> /// Lists the rows within this table, similar to a <c>SELECT * FROM ...</c> query. /// </summary> /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param> /// <returns>The results of listing the rows within the table.</returns> public BigqueryResult ListRows(ListRowsOptions options = null) => _client.ListRows(Reference, Schema, options);