コード例 #1
0
 /// <summary>
 /// Creates a table within this dataset.
 /// This method just creates a <see cref="TableReference"/> and delegates to <see cref="BigQueryClient.CreateTable(TableReference, TableSchema, CreateTableOptions)"/>.
 /// </summary>
 /// <param name="tableId">The table ID. Must not be null.</param>
 /// <param name="schema">The schema of the data. 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 newly created table.</returns>
 public BigQueryTable CreateTable(string tableId, TableSchema schema, CreateTableOptions options = null) =>
 _client.CreateTable(GetTableReference(tableId), schema, options);