MVC 4 アプリケーションに取り組んでいます。現在のアクション メソッドの実行をブロックせずに特定の DB 呼び出しを行う必要があります。
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 を async に呼び出したいと考えています。
従業員情報を保存した瞬間に、AuditService の呼び出しを待つのではなく、ビューを返す必要があります。
私はMVC 4の初心者ですasync
。await