获取无回发结果。 See Screen Shot details
[HttpPost]
//[ValidateAntiForgeryToken]
public async Task<IActionResult> EditList(IEnumerable<EmployeeModel> employeeModels)
{
foreach (EmployeeModel emp in employeeModels)
{
_context.Update(emp);
await _context.SaveChangesAsync();
}
return RedirectToAction(nameof(Index));
}