對企業庫的封裝,業務層開啟事務的解決方案(可直接使用的代碼)

來源:互聯網
上載者:User

至於為什麼要這樣子做,請看這裡,不多說了,相信是很多人想要的

http://www.cnblogs.com/mimijidi/archive/2009/05/01/1447493.html

 

這個方案是從以前參與過的一個項目中提取出來的

公司名字就不說了,明白人一看就知道了.呵呵

 

業務層調用程式碼範例如下

代碼

using System;
using Demo.DAL;
using Framework.Service;

namespace Demo.BLL
{
public class ProductBll : ServiceBase
{
public void Update()
{
BeginTransaction();
try
{
ProductDal pd = new ProductDal();
pd.Update1();
pd.Update2();
Commit();
}
catch (Exception e)
{

Rollback();
throw new Exception(e.Message, e);
}
}

}

public static class ProductBll2
{
public static void Update()
{
ServiceBase.BeginTransaction();
try
{
ProductDal pd = new ProductDal();
pd.Update1();
pd.Update2();
ServiceBase.Commit();
}
catch (Exception e)
{
ServiceBase.Rollback();
throw new Exception(e.Message, e);
}
}
}
}

 

:

http://files.cnblogs.com/builderman/Framework.rar

 

 

歡迎大家一起來探討這種方案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.