public sealed class SpannerRowUpdatedEventArgs : RowUpdatedEventArgsReference documentation and code samples for the Google.Cloud.Spanner.Data class SpannerRowUpdatedEventArgs.
Provides data for the RowUpdated event of the Spanner data provider.
Namespace
Google.Cloud.Spanner.DataAssembly
Google.Cloud.Spanner.Data.dll
Constructors
SpannerRowUpdatedEventArgs(DataRow, IDbCommand, StatementType, DataTableMapping)
public SpannerRowUpdatedEventArgs(DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)Initializes a new instance of the SpannerRowUpdatedEventArgs 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 |
|