码迷,mamicode.com
首页 > 其他好文 > 详细

Entity Framework实现事务回滚

时间:2014-09-10 22:23:51      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   使用   ar   数据   

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

 

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

bubuko.com,布布扣

 

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

    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表数据的时候,模拟了一个异常,通过断点调试执行完毕,发现数据库中没有增加任何数据。   

Entity Framework实现事务回滚

标签:style   blog   http   color   io   os   使用   ar   数据   

原文地址:http://www.cnblogs.com/darrenji/p/3965233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!