public sealed class Delete : IMessage<Mutation.Types.Delete>, IEquatable<Mutation.Types.Delete>, IDeepCloneable<Mutation.Types.Delete>, IBufferMessage, IMessage
Arguments to [delete][google.spanner.v1.Mutation.delete] operations.
Required. The primary keys of the rows within [table][google.spanner.v1.Mutation.Delete.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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-04 UTC."],[[["This webpage details the `Delete` class within the `Google.Cloud.Spanner.V1.Mutation.Types` namespace, used for specifying rows to delete in Google Cloud Spanner operations."],["The `Delete` class, part of the `Google.Cloud.Spanner.V1` assembly, implements multiple interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, indicating its role in handling message operations and data manipulation."],["The class has two constructors: a default `Delete()` and a `Delete(Mutation.Types.Delete other)` constructor, allowing the creation of instances and cloning from other `Delete` objects."],["`Delete` operations are specified with two key properties: `Table`, which is the table from which to delete rows, and `KeySet`, which contains the primary keys of the rows to be deleted."],["This documentation includes access to various historical versions of the Delete class ranging from 3.5.0 to the latest beta version 5.0.0-beta05."]]],[]]