Entity Framework实现事务回滚_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > Entity Framework实现事务回滚

Entity Framework实现事务回滚

 2014/9/10 23:10:49  Darren Ji  程序员俱乐部  我要评论(0)
  • 摘要:在使用EntityFramework为主从表添加数据,当一个表添加数据成功,另一个表添加数据失败,这时候就需要用到事务回滚。比如有以下关系的2张表。客户端使用TransactionScope类可以实现事务回滚。classProgram{staticvoidMain(string[]args){try{using(TransactionScopets=newTransactionScope()){using
  • 标签:实现 Framework

在使用Entity Framework为主从表添加数据,当一个表添加数据成功,另一个表添加数据失败,这时候就需要用到事务回滚。

 

比如有以下关系的2张表。

1

 

客户端使用TransactionScope类可以实现事务回滚。

monospace; width: 100%; margin: 0em; background-color: #f0f0f0">    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                using (TransactionScope ts = new TransactionScope())
                {
                    using (CountryDetailsEntities db = new CountryDetailsEntities())
                    {
                        Country country = new Country();
                        country.CountryName = "USA";
                        db.Countries.Add(country);
                        db.SaveChanges();
                        if (country.CountryID > 0)
                        {
                            int a = 0;
                            int total = 10 / a;
                            State state = new State();
                            state.CountryID = country.CountryID;
                            state.StateName = "NewYork";
                            db.States.Add(state);
                            db.SaveChanges();
                        }
                    }
                    ts.Complete();
                }
                
            }
            catch (Exception ex)
            {
                throw;
            }
        }
    }

以上,在添加State表数据的时候,模拟了一个异常,通过断点调试执行完毕,发现数据库中没有增加任何数据。   

发表评论
用户名: 匿名