<PackageReference Include="System.Data.SqlClient" Version="4.8.0" />

SqlRowUpdatingEventArgs

Provides data for the RowUpdating event.
using System.Data.Common; namespace System.Data.SqlClient { public sealed class SqlRowUpdatingEventArgs : RowUpdatingEventArgs { protected override IDbCommand BaseCommand { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public new SqlCommand Command { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public SqlRowUpdatingEventArgs(DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) : base(null, null, StatementType.Select, null) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } }