// 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.Attach(Event).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!EventExists(Event.Id))
                {
                    return NotFound();
                }
                else
                {
                    return RedirectToPage("/Error");
                }
            }

            return Page();
        }
示例#2
0
        public async Task <IActionResult> OnPostAsync(int?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            Event = await _context.Events.FindAsync(id);

            if (Event != null)
            {
                try
                {
                    _context.Events.Remove(Event);
                    await _context.SaveChangesAsync();
                }
                catch (Exception)
                {
                    return(RedirectToPage("/Error"));
                }
            }

            return(Page());
        }