// To protect from overposting attacks, enable the specific properties you want to bind to, for // more details, see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Animals.Add(Animal); await _context.SaveChangesAsync(); if (Image != null) { var fileName = $"{Animal.AnimalId}" + Path.GetExtension(Image.FileName); Animal.Image = fileName; var path = Path.Combine(_environment.WebRootPath, "Images", fileName); using (var fStream = new FileStream(path, FileMode.Create)) { await Image.CopyToAsync(fStream); } await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Animal = await _context.Animals.FindAsync(id); if (Animal != null) { _context.Animals.Remove(Animal); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
// To protect from overposting attacks, enable the specific properties you want to bind to, for // more details, see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } if (Image != null) { var fileName = $"{Animal.AnimalId}" + Path.GetExtension(Image.FileName); Animal.Image = fileName; var path = Path.Combine(_environment.WebRootPath, "Images", fileName); using (var fStream = new FileStream(path, FileMode.Create)) { await Image.CopyToAsync(fStream); } } _context.Attach(Animal).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AnimalExists(Animal.AnimalId)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }