我必须将数据从 Asp.net webservice 绑定到 Windows Forms 应用程序。
这是我的代码:
PGPInfo[] _personGroupInfoObj = webObject.GetAllPGPMobInfo();
我也试过:
dataset ds=webObject.GetallLocations();
两者都需要 1 分钟来绑定 10000 条记录。
我的应用程序中有 20 种这样的方法。我想加快这个绑定过程以提高性能。
还有其他方法可以绑定数据吗?