我正在编写一个集成测试,我将在其中将许多对象插入数据库,然后检查以确保我的方法是否检索到这些对象。
我与数据库的连接是通过 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()
and ) 调用吗?RollbackTransaction(
TransactionScope
如果不是,那么如何TransactionScope
回滚事务?