Exemplo n.º 1
0
 /// <summary>
 /// Retrieves a table within this dataset.
 /// This method just creates a <see cref="TableReference"/> and delegates to <see cref="BigQueryClient.GetTable(TableReference, GetTableOptions)"/>.
 /// </summary>
 /// <param name="tableId">The table ID. Must not be null.</param>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>The requested table.</returns>
 public BigQueryTable GetTable(string tableId, GetTableOptions options = null) =>
 _client.GetTable(GetTableReference(tableId), options);