// [START delete_table] public void DeleteTable(string datasetId, string tableId, BigqueryClient client) { // The Bigquery client method DeleteTable() is currently failing as noted in the following issue: // https://github.com/GoogleCloudPlatform/google-cloud-dotnet/issues/443 client.DeleteTable(_projectId, datasetId, tableId); }
// [START delete_table] public void DeleteTable(string datasetId, string tableId, BigqueryClient client) { client.DeleteTable(_projectId, datasetId, tableId); }