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