public void DeleteTable(
        string projectId = "your-project-id",
        string datasetId = "your_dataset_id",
        string tableId   = "your_table_id"
        )
    {
        BigQueryClient client = BigQueryClient.Create(projectId);

        client.DeleteTable(datasetId, tableId);
        Console.WriteLine($"Table {tableId} deleted.");
    }
 // [START delete_table]
 public void DeleteTable(string datasetId, string tableId, BigQueryClient client)
 {
     client.DeleteTable(_projectId, datasetId, tableId);
 }
Beispiel #3
0
 // [START bigquery_delete_table]
 public void DeleteTable(string datasetId, string tableId, BigQueryClient client)
 {
     client.DeleteTable(_projectId, datasetId, tableId);
 }