private IMutableTable CreateTableAtCommit(ITableSource source) { // Create the table for this transaction. var table = source.CreateTableAtCommit(Transaction); accessedTables.Add(table); Transaction.OnTableAccessed(source.TableId, source.TableInfo.TableName); return(table); }
private IMutableTable CreateTableAtCommit(ITableSource source) { // Create the table for this transaction. var table = source.CreateTableAtCommit(Transaction); accessedTables.Add(table); Transaction.Registry.RegisterEvent(new TableAccessEvent(source.TableId, source.TableInfo.TableName)); return table; }