SQL Server存储过程执行需要0.1秒,但Rest api需要60秒。

时间:2018-09-25 05:28:03

标签: sql-server api stored-procedures

这是我的API查询:

public async Task<IEnumerable<VoucherReview>> Query(IDbConnection db)
{
    return await DapperExtensions.QueryAsync<VoucherReview>(db, "spDispatch_GetDBVoucherTrips", this, commandType: CommandType.StoredProcedure, commandTimeout:60);
}

spDispatch_GetDBVoucherTrips存储过程将花费0.1秒的时间来执行。为什么API需要60秒?有什么建议吗?

0 个答案:

没有答案