SARowUpdatingEventArgs constructor

Initializes a new instance of the SARowUpdatingEventArgs class.

Syntax
Visual Basic

Public Sub New( _
   ByVal row As DataRow, _
   ByVal command As IDbCommand, _
   ByVal statementType As StatementType, _
   ByVal tableMapping As DataTableMapping _
)
C#

public  SARowUpdatingEventArgs(
   DataRow row,
   IDbCommand command,
   StatementType statementType,
   DataTableMapping tableMapping
);
Parameters
  • row   The DataRow to update.

  • command   The IDbCommand to execute during update.

  • statementType   One of the StatementType values that specifies the type of query executed.

  • tableMapping   The DataTableMapping sent through an Update.

See also