AzureTicker.Worker.Model.Repositories.NotificationRepository.SaveChanges C# (CSharp) Метод

SaveChanges() публичный Метод

public SaveChanges ( ) : void
Результат void
        public void SaveChanges()
        {
            context.SaveChangesWithRetries();
        }

Usage Example

 public bool RemoveExistingAccount(string rowKey)
 {
     bool retVal = false;
     using (INotificationRepository rep = new NotificationRepository())
     {
         retVal = rep.Delete(rowKey);
         rep.SaveChanges();
     }
     return retVal;
 }
All Usage Examples Of AzureTicker.Worker.Model.Repositories.NotificationRepository::SaveChanges