zoukankan      html  css  js  c++  java
  • 在EF4.1的DBContext中实现事务处理(BeginTransaction)和直接执行SQL语句的示例

    在EF4.1的DBContext中实现事务处理(BeginTransaction)和直接执行SQL语句的示例

     (2012-03-13 10:12:48)
     

            public ActionResult _Function21Update(string id)
            {
                GEN_PARAMETER parameter = db.GEN_PARAMETER.Find(id);
                if (TryUpdateModel(parameter))
                {

                    if (ModelState.IsValid)
                    {
                        parameter.LAST_UPDATE_DATE = DateTime.Now;
                        DbConnection con = ((IObjectContextAdapter)db).ObjectContext.Connection;
                        con.Open();
                        using(var tran = con.BeginTransaction())
                        {
                            try
                            {
                                string testsql = "update test_current set value = '" + parameter.VALUE + "'";
                                db.Database.ExecuteSqlCommand(testsql);
                                db.SaveChanges();
                                //testsql = "insert1 into test_log (text) values ('code:" + parameter.CODE + "value:" + parameter.VALUE + "')";
                                testsql = "insert into test_log (text) values ('code:" + parameter.CODE + "value:" + parameter.VALUE + "')";
                                db.Database.ExecuteSqlCommand(testsql);

                                tran.Commit();
                            }
                            catch (Exception ex)
                            {
                                tran.Rollback();
                                db.Entry(parameter).Reload();
                                Global.Logger().Error(SysAdminErr.dbSaveErr + ex.Message, ex);
                            }
                        }
                        con.Close();
                    }
                }
                return View(new GridModel(db.GEN_PARAMETER.Where(p => p.ENABLED == "0")));
            }

  • 相关阅读:
    QButtonGroup按钮组
    命令链接按钮QCommandLinkButton
    Arduino-常用指令
    第十章第三节 物体的浮沉条件及应用
    安装包制作工具 SetupFactory使用1 详解
    ONVIF、RTSP/RTP、FFMPEG的开发实录
    ffmpeg摄像头采集h264编码RTP发送
    ffmpeg综合应用示例(一)——摄像头直播
    利用ffmpeg一步一步编程实现摄像头采集编码推流直播系统
    ffmpeg超详细综合教程——摄像头直播
  • 原文地址:https://www.cnblogs.com/louby/p/4747811.html
Copyright © 2011-2022 走看看