示例#1
0
 public void CommitChanges()
 {
     try
     {
         _context.SaveChanges();
     }
     catch (Exception)
     {
         throw;
     }
 }
示例#2
0
 public void CommitChanges()
 {
     _context.SaveChanges();
 }