Kod: Tümünü seç
[HttpPut, Route("/api/kategori/{id}")]
public IActionResult Update(int id,Category model)
{
Category c = categoryRepo.GetBy(g => g.ID == id) ?? null;
if (c != null)
{
c.Name = model.Name;
categoryRepo.Update(c);
return Ok(c);
}
return NotFound();
}
ID'siz modelden güncelleme
Kod: Tümünü seç
[HttpPut, Route("/api/kategori")]
public IActionResult Update(Category model)
{
if (ModelState.IsValid)
{
categoryRepo.Update(model);
return Ok(model);
}
return BadRequest(model);
}