Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用silverlight5 和带有 wcf ria 服务的实体框架开发 Web 应用程序,以从 oracle 获取数据。
silverlight
尝试加载超过 2000 条记录时,我的加载操作失败。我们如何在单个加载操作方法调用中获取大量记录?
尝试将 web.config 中称为maxItemsInObjectGraphset 的设置更改为 int.MaxValue。
maxItemsInObjectGraph
i.e. <endpointBehaviors> <behavior> <dataContractSerializer maxItemsInObjectGraph="2147483647"/> </behavior> </endpointBehaviors>
希望这可以帮助。