Example #1
0
 private void SyncronizeTable(BaseSqlToCS table)
 {
     if (table.Mode != EditMode.None)
     {
         ITransactionLog create = table as ITransactionLog;
         if (create != null)
         {
             create.TransactionId = TransactionId;
         }
     }
 }
Example #2
0
 /// <summary>
 /// Adds the sql text and sql parameters from a table to this transaction
 /// </summary>
 public void Add(BaseSqlToCS table)
 {
     m_Tables.Add(table);
 }
 /// <summary>
 /// Adds the sql text and sql parameters from a table to this transaction
 /// </summary>
 public void Add(BaseSqlToCS table)
 {
     m_Items.Add(table);
 }