Enum WriteDisposition (2.2.0)

public enum WriteDisposition

Indicates the desired behavior when writing to a table which already contains data.

Namespace

Google.Cloud.BigQuery.V2

Assembly

Google.Cloud.BigQuery.V2.dll

Fields

NameDescription
WriteAppend

The additional data is appended to the table.

WriteIfEmpty

Attempting to write data to a non-empty table fails with an error.

WriteTruncate

The table is truncated before the additional data is inserted.