コード例 #1
0
 /**
  * Save the changes made to the database
  */
 public bool SaveChanges()
 {
     try
     {
         return(_context.SaveChanges() >= 0);
     }
     catch
     {
         return(false);
     }
 }
コード例 #2
0
ファイル: CarreraRepo.cs プロジェクト: OscarAraya18/StravaTEC
 /**
  * Save the changes made to the database
  */
 public bool SaveChanges()
 {
     return(_context.SaveChanges() >= 0);
 }