在 ApiController
操作中,我需要在操作完成后立即关闭与数据库的连接。
在控制器下,我覆盖OnActionExecuted
来完成此任务。
如何在ApiController
行动下完成此操作?
由于
答案 0 :(得分:6)
您可以覆盖ExecuteAsync
方法:
public override Task<HttpResponseMessage> ExecuteAsync(HttpControllerContext controllerContext, CancellationToken cancellationToken)
{
return base
.ExecuteAsync(controllerContext, cancellationToken)
.ContinueWith(t =>
{
// the controller action has finished executing,
// your custom code could come here ...
return t.Result;
});
}