【转】C# LINQ TO SQL 分布式事务
摘要:
public class TransactionExtension{ public static void Excute(params Action[] actions) { //ReadCommitted the same as sql server Excute(System.Transactions.IsolationLevel.ReadCommitted, null, actions); } public static void Excute(System.Transactions.IsolationLevel level, para... 阅读全文
posted @ 2011-12-16 18:39 buguge 阅读(418) 评论(0) 推荐(0) 编辑