Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
        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;
        }