Exemplo n.º 1
0
        public async Task <IActionResult> Create([Bind("Id,Title,ReleaseDate,Genre,Author")] Book book)
        {
            if (ModelState.IsValid)
            {
                _context.Add(book);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            return(View(book));
        }