Class Delete
Arguments to delete operations.
Implements
Inherited Members
Namespace: Google.Apis.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class Delete : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
KeySet
Required. The primary keys of the rows within table to delete. The primary keys must be specified in the
order in which they appear in the PRIMARY KEY()
clause of the table's equivalent DDL statement (the DDL
statement used to create the table). Delete is idempotent. The transaction will succeed even if some or all
rows do not exist.
Declaration
[JsonProperty("keySet")]
public virtual KeySet KeySet { get; set; }
Property Value
Type | Description |
---|---|
KeySet |
Table
Required. The table whose rows will be deleted.
Declaration
[JsonProperty("table")]
public virtual string Table { get; set; }
Property Value
Type | Description |
---|---|
string |