处理 MVC 4 应用程序。我需要在不阻塞当前操作方法执行的情况下进行某些数据库调用。
public ActionResult Save(Employee e){
bool saveStatus = EmployeeService.Save(e);
if(saveStatus){
AuditService.Add("Employee {0} added successfully", e.Name); //want this async
}
return View(e);
}
在上面的代码中,我想让 AuditService 调用异步。
当我保存员工信息时,我需要返回视图而不是等待 AuditService 调用。
我是MVC 4async
的新手await
。