在 MVC 3 中是否可以在调用 DbContext.SaveChanges() 后回滚数据库?
我的实体类:
public class BipEntities : DbContext
{
public DbSet<Page> Pages { get; set; }
public DbSet<ImageFile> ImageFiles { get; set; }
}
我要做的是将 ImageFile 记录插入数据库,然后使用自动递增的 id 作为图像文件名,将图像文件保存到其他地方。当 System.IO 失败时,我想回滚数据库。
BipEntities db = new BipEntities();
db.Database.Connection.Open();
DbTransaction tranx = db.Database.Connection.BeginTransaction();
ImageFile img = new ImageFile { CreatedAt = DateTime.Now };
db.ImageFiles.Add(img);
db.SaveChanges();
string filename = "img" + img.Id.ToString() + ".png";
try {
//Works on system IO to process file
tranx.Commit();
} Catch ( Exception) {
tranx.Rollback();
}
db.Database.Connection.Close();
但是,上面的代码给了我这个错误信息:
EntityConnection can only be constructed with a closed DbConnection.