这是我的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秒?有什么建议吗?