我在 TransactionScope() 和 datacontext 上遇到错误,如下所示。
找不到类型或命名空间名称“TransactioScope”(您是否缺少 using 指令或程序集引用?)
找不到类型或命名空间名称“HRPaidTimeOffDataContext”(您是否缺少 using 指令或程序集引用?)
我必须怎么做才能在下面的代码中解决这个问题。
using ( TransactioScope ts = new TransactionScope())
{
// Create the data context
using (HRPaidTimeOffDataContext db = new HRPaidTimeOffDataContext())
{
//Now save the record
if (this.Save(db, ref validationErrors, userAccountId))
{
// Commit transaction if update was successful
ts.Complete();
return true;
}
else
{
return false;
}
}
}