public void DeleteDishReview(int id) { var dishreview = GetDishReviewById(id); context.dishreviews.Remove(dishreview); context.SaveChanges(); }