/// <summary>
 /// Asynchronously lists the tables within this dataset.
 /// This method just creates a <see cref="DatasetReference"/> and delegates to <see cref="BigQueryClient.ListTablesAsync(DatasetReference, ListTablesOptions)"/>.
 /// </summary>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>An asynchronous sequence of tables within this dataset.</returns>
 public PagedAsyncEnumerable <TableList, BigQueryTable> ListTablesAsync(ListTablesOptions options = null) => _client.ListTablesAsync(Reference, options);