I need help asap
I don't know what I'm doing wrong here, My laptop can run it but my desktop weren't able to run it, does using different browser affect something?




Find is null which would be the case if your id is not the ID of an entity in the students table

FindC#
public IActionResult Update(Guid id)
{
var Find = _db.Students.FirstOrDefault(x => x.Id == id);
return View(Find);
}
[HttpPost]
public IActionResult Update(Student st)
{
_db.Students.Update(st);
_db.SaveChanges();
return RedirectToAction("List");
}
public IActionResult Delete(Guid id)
{
var Find = _db.Students.FirstOrDefault(x => x.Id == id);
_db.Students.Remove(Find);
_db.SaveChanges();
return RedirectToAction("List");
}