public sealed class SpannerRowUpdatedEventArgs : RowUpdatedEventArgs
Reference 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 | DataRow The DataRow sent through an Update. Must not be null. |
command | IDbCommand The SpannerCommand executed when Update is called. May be null. |
statementType | StatementType The type of SQL statement executed. |
tableMapping | DataTableMapping The 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 |