public sealed class SpannerRowUpdatingEventArgs : RowUpdatingEventArgsReference documentation and code samples for the Google.Cloud.Spanner.Data class SpannerRowUpdatingEventArgs.
Provides data for the RowUpdating event of the Spanner data provider.
Namespace
Google.Cloud.Spanner.DataAssembly
Google.Cloud.Spanner.Data.dll
Constructors
SpannerRowUpdatingEventArgs(DataRow, IDbCommand, StatementType, DataTableMapping)
public SpannerRowUpdatingEventArgs(DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)Initializes a new instance of the SpannerRowUpdatingEventArgs class.
| Parameters | |
|---|---|
| Name | Description |
row |
DataRowThe DataRow sent through an Update. Must not be null. |
command |
IDbCommandThe SpannerCommand executed when Update is called. May be null. |
statementType |
StatementTypeThe type of SQL statement executed. |
tableMapping |
DataTableMappingThe DataTableMapping sent through an Update. May be null. |
Properties
Command
public SpannerCommand Command { get; }Gets the SpannerCommand executed when Update is called.
| Property Value | |
|---|---|
| Type | Description |
SpannerCommand |
|