buguge - Keep it simple,stupid

知识就是力量,但更重要的,是运用知识的能力why buguge?

导航

2011年12月16日 #

【转】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) 编辑

使用TransactionScope类定义代码块以参与事务

摘要: 使用System.Transactions.TransactionScope类定义代码块以参与事务控制。利用分布式事务,保证数据的一致性 阅读全文

posted @ 2011-12-16 17:51 buguge 阅读(754) 评论(3) 推荐(0) 编辑

c# 可空类型

摘要: C#中的 int?是什么意思? ---结构作为值类型,是不能赋值为null的,而int32是个结构..有时(特别是与数据库交互时)需要赋值为null,就在结构后面加个?标识符,表示可以接受null空类型 阅读全文

posted @ 2011-12-16 17:36 buguge 阅读(478) 评论(0) 推荐(0) 编辑