1

我正在使用类型化数据集 (.xsd) 来访问和更新我的数据库。我有两个表适配器用于更新两个不同表中的记录。

我无法找到在单个事务中执行两个更新的方法。

4

1 回答 1

2

您可以使用TransactionScope

            using (var ts = new TransactionScope())
            {
                // Perform updates using different table adapters
                using (var ta1 = new tbl1TableAdapter())
                using (var ta2 = new tbl2TableAdapter())
                {
                    ta1.Update(yourDataSet.tbl1);
                    ta2.Update(yourDataSet.tbl2);
                }

                ts.Complete();
                yourDataSet.AcceptChanges();
            }

您可以在此处阅读有关TransactionScope课程的信息

于 2012-10-10T11:58:19.837 回答