-1

我正在使用 http restcall 从私有 socrata 数据集中获取记录

string searchCondition = "resource/xxxx-xxxx.json?$where=column1='something'AND column2='something'&$limit=25000";
 response = client.GetAsync(searchCondition).Result;

问题是我无法获取超过 20000 的数据,它显示了一些错误。我了解到,使用最新的“sodaclient”可以获取多达 50000 条记录。有没有办法使用 http restcall 来实现这一点?

4

1 回答 1

0

没关系,我忘记为“客户端”添加更高的超时值。由于它,该操作以前无法完成。

于 2015-08-25T07:02:22.853 回答