Example #1
0
 private void SaveChanges(string method)
 {
     try{
         _context.SaveChanges();
     }
     catch (DbEntityValidationException ex) {
         LogEntityValidatinError(method, ex);
         throw;
     }
 }