System.Data.Common.RowUpdatingEventArgs
namespace System.Data.Common
{
public class RowUpdatingEventArgs : EventArgs
{
protected virtual IDbCommand BaseCommand { get; set; }
public IDbCommand Command { get; set; }
public Exception Errors { get; set; }
public DataRow Row { get; }
public StatementType StatementType { get; }
public UpdateStatus Status { get; set; }
public DataTableMapping TableMapping { get; }
public RowUpdatingEventArgs(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping);
}
}