我正在编写一个集成测试,该测试将在数据库中插入许多对象,然后检查以确保我的方法是否检索到这些对象。
我与数据库的连接是通过NHibernate进行的,而创建此类测试的常用方法是执行以下操作:
NHibernateSession.BeginTransaction();
//use nhibernate to insert objects into database
//retrieve objects via my method
//verify actual objects returned are the same as those inserted
NHibernateSession.RollbackTransaction();
但是,我最近发现了TransactionScope,显然可以用于此目的...
public static int AddDepartmentWithEmployees(Department dept)
{
int res = 0;
DepartmentAdapter deptAdapter = new DepartmentAdapter();
EmployeeAdapter empAdapter = new EmployeeAdapter();
using (TransactionScope txScope = new TransactionScope())
{
res += deptAdapter.Insert(dept.DepartmentName);
//Custom method made to return Department ID
//after inserting the department "Identity Column"
dept.DepartmentID = deptAdapter.GetInsertReturnValue();
foreach(Employee emp in dept.Employees)
{
emp.EmployeeDeptID = dept.DepartmentID;
res += empAdapter.Insert(emp.EmployeeName, emp.EmployeeDeptID);
}
txScope.Complete();
}
return res;
}
我相信,如果不包括这一行txScope.Complete()
,插入的数据将被回滚。但是不幸的是,我不明白这是怎么可能的…… txScope
对象如何跟踪数据库中的deptAdapter
和empAdapter
对象及其事务。
我感觉好像在这里丢失了一些信息...我真的能够通过使用?包围我的代码来替换我BeginTransaction()
和(RollbackTransaction(
)调用TransactionScope
。
如果没有,那么如何TransactionScope
回滚事务?