public async Task <IActionResult> Create([Bind("CategoryID,CategoryName,Description,Picture")] Category category) { if (ModelState.IsValid) { _context.Add(category); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(category)); }
public async Task <IActionResult> Create([Bind("ProductID,ProductName,SupplierID,CategoryID,QuantityPerUnit,UnitPrice,UnitslnStock,UnitOnOrder,ReorderLevel,Discountinued")] Product product) { if (ModelState.IsValid) { _context.Add(product); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } ViewData["CategoryID"] = new SelectList(_context.Set <Category>(), "CategoryID", "CategoryID", product.CategoryID); return(View(product)); }