我正在使用silverlight
5开发Web应用程序,使用wcf ria服务实现实体框架以从oracle获取数据。
尝试加载超过2000条记录时,我的加载操作失败。如何在单个加载操作方法调用中获取大量记录?
答案 0 :(得分:0)
尝试将名为maxItemsInObjectGraph
的web.config中的设置更改为int.MaxValue。
i.e.
<endpointBehaviors>
<behavior>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
</behavior>
</endpointBehaviors>
希望这有帮助。