我每天使用BigQueryClient UploadJson方法将我的数据上传到C#应用程序的BigQuery表中。表列中的某些值会经常更新,并且这些更新也需要应用于BigQuery。
似乎BigQuery不允许从我的C#应用程序更新这些值。是否可以使用BigQuery客户端库更新表? 插入示例:
using (BigQueryClient client = BigQueryClient.Create(_projectId, _googleCredential))
{
BigQueryTable table = client.GetTable(_datasetId, _tableId);
BigQueryJob job = table.UploadJson(dataStream, new UploadJsonOptions() { AllowUnknownFields = true });
return CheckJobStatus(client, job.Reference);
}