public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Attach(Recipe).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!RecipeExists(Recipe.ID)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Ingredient.Add(Ingredient); await _context.SaveChangesAsync(); return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Recipe = await _context.Recipe.FindAsync(id); if (Recipe != null) { _context.Recipe.Remove(Recipe); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(string id) { if (id == null) { return(NotFound()); } Ingredient = await _context.Ingredient.FindAsync(id); if (Ingredient != null) { _context.Ingredient.Remove(Ingredient); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }