コード例 #1
0
ファイル: DataSetContainer.cs プロジェクト: xydoublez/RDO.Net
        internal void OnDataRowRemoving(DataRowEventArgs e)
        {
            var dataRow      = e.DataRow;
            var localColumns = dataRow.Model.LocalColumns;

            for (int i = 0; i < localColumns.Count; i++)
            {
                ((ILocalColumn)localColumns[i]).OnDataRowRemoving(dataRow);
            }
            DataRowRemoving(this, e);
        }
コード例 #2
0
ファイル: DataSetContainer.cs プロジェクト: aTiKhan/RDO.Net
 internal void OnDataRowRemoving(DataRowEventArgs e)
 {
     DataRowRemoving(this, e);
 }
コード例 #3
0
ファイル: DataSetContainer.cs プロジェクト: aTiKhan/RDO.Net
 internal void OnAfterDataRowInserted(DataRowEventArgs e)
 {
     AfterDataRowInserted(this, e);
     _computationManager?.OnAfterDataRowInserted(e.DataRow);
 }
コード例 #4
0
ファイル: DataSetContainer.cs プロジェクト: aTiKhan/RDO.Net
 internal void OnBeforeDataRowInserted(DataRowEventArgs e)
 {
     _computationManager?.OnBeforeDataRowInserted(e.DataRow);
     BeforeDataRowInserted(this, e);
 }
コード例 #5
0
ファイル: DataSetContainer.cs プロジェクト: aTiKhan/RDO.Net
 internal void OnDataRowInserting(DataRowEventArgs e)
 {
     DataRowInserting(this, e);
 }