✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що описує нище наведений код?
[HttpGet]
public ActionResult EditBook(int? id){ if (id == null) { return HttpNotFound(); } Book book = db.Books.Find(id); if (book == null) { return HttpNotFound(); }return View(book);}