Пример #1
0
 /// <summary>
 /// Lists the tables within this dataset.
 /// This method just creates a <see cref="DatasetReference"/> and delegates to <see cref="BigQueryClient.ListTables(DatasetReference, ListTablesOptions)"/>.
 /// </summary>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>A sequence of tables within this dataset.</returns>
 public PagedEnumerable <TableList, BigQueryTable> ListTables(ListTablesOptions options = null) => _client.ListTables(Reference, options);