public async Task <IActionResult> Edit(int id, [Bind("Id,Name")] MsGenre msGenre)
        {
            if (id != msGenre.Id)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(msGenre);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!MsGenreExists(msGenre.Id))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            return(View(msGenre));
        }
Пример #2
0
        public async Task <IActionResult> Edit(int id, [Bind("Id,GenreId,Title,Author,PublishYear,ISBN")] Book book)
        {
            if (id != book.Id)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(book);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!BookExists(book.Id))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }

            ViewData["GenreId"] = new SelectList(_context.MsGenres, "Id", "Name", book.GenreId);
            return(View(book));
        }