我不确定在代码中管理此事务的好方法是什么。
说我有以下
服务层(非静态类) 存储库层(静态类)
//服务层类
/// <summary>
/// Accept offer to stay
/// </summary>
public bool TxnTest()
{
using (SqlConnection conn = new SqlConnection(ConnectionString))
{
conn.Open();
SqlTransaction txn = conn.BeginTransaction();
using (SqlCommand cmd = conn.CreateCommand())
{
cmd.Transaction = txn;
try
{
DoThis(cmd);
DoThat(cmd);
txn.Commit();
}
catch (SqlException sqlError)
{
txn.Rollback();
}
}
}
}
// Repo Class
/// <summary>
/// Update Rebill Date
/// </summary>
public static void DoThis(SqlCommand cmd)
{
cmd.Parameters.Clear();
cmd.Parameters.AddWithValue("@SomeParam", 1);
cmd.CommandText = "Select * from sometable1";
cmd.CommandType = CommandType.Text;
cmd.ExecuteNonQuery();
}
/// <summary>
/// Update Rebill Date
/// </summary>
public static void DoThat(SqlCommand cmd)
{
cmd.Parameters.Clear();
cmd.Parameters.AddWithValue("@SomeParam", 2);
cmd.CommandText = "Select * from sometable2";
cmd.CommandType = CommandType.Text;
cmd.ExecuteNonQuery();
}
答案 0 :(得分:3)
您可能需要查看unit of work pattern。
工作单元模式准确定义了它的建议,即一次提交或根本不提交的工作单元。
这是通过定义一个包含两部分的接口来实现的:
然后,您将传递此接口的实现,并在所有操作完成时在外部边界(您的服务)提交更改。
请注意,LINQ-to-Entities中的ObjectContext
class和LINQ-to-SQL中的DataContext
class都是工作单元的示例(您执行操作然后将它们保存在批处理中)。