DropTableOperation
Drop a table. DESTRUCTIVE - requires explicit opt-in.
public sealed record DropTableOperation : SchemaOperation, IEquatable<SchemaOperation>, IEquatable<DropTableOperation>
Constructors
DropTableOperation
public DropTableOperation(string Schema, string TableName)
Drop a table. DESTRUCTIVE - requires explicit opt-in.
| Parameter | Type | Description |
|---|---|---|
Schema |
String |
|
TableName |
String |
Properties
Schema
public string Schema { get; init; }
TableName
public string TableName { get; init; }