使用RIA在Silverlight中获取大量记录

时间:2013-07-15 11:58:23

标签: .net wcf silverlight-5.0 wcf-ria-services ria

我正在使用silverlight 5开发Web应用程序,使用wcf ria服务实现实体框架以从oracle获取数据。

尝试加载超过2000条记录时,我的加载操作失败。如何在单个加载操作方法调用中获取大量记录?

1 个答案:

答案 0 :(得分:0)

尝试将名为maxItemsInObjectGraph的web.config中的设置更改为int.MaxValue。

i.e.
<endpointBehaviors>
        <behavior>
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
        </behavior>
</endpointBehaviors>

希望这有帮助。