我要查询的列表中有大约 10000 多行(Listitems)。
我想迭代 timerJob 中的每个项目 - 但我不能一次全部接受:对象模型覆盖 - 否,ListView 阈值 - 1000 - 在 FARM 级别,我无法更改此设置。
我迭代所有 10000+ 的方法是什么(就像一批)?
我要查询的列表中有大约 10000 多行(Listitems)。
我想迭代 timerJob 中的每个项目 - 但我不能一次全部接受:对象模型覆盖 - 否,ListView 阈值 - 1000 - 在 FARM 级别,我无法更改此设置。
我迭代所有 10000+ 的方法是什么(就像一批)?
您应该使用ContentIterator。这将允许您在不触发SPQueryThrottledException
.
例如:
SPList list = SPContext.Current.Web.Lists["MyList"];
// Build query using an iterator-defined WHERE clause
string query = string.Format("<Where><Eq><FieldRef Name='MyFieldName'/><Value Type='Text'>MyFieldValue</Value></Eq></Where>{0}", ContentIterator.ItemEnumerationOrderByNVPField);
// Instantiate iterator and use it to process the list
ContentIterator iterator = new ContentIterator();
iterator.ProcessListItems(list, query, ProcessListItem, ProcessListItemError);
然后你会定义你的ProcessListItem
,ProcessListItemError
因此:
static void ProcessListItem(SPListItem item) {
Console.WriteLine("ProcessListItem: Name {0}", item.Title);
}
static bool ProcessListItemError(SPListItem item, Exception e) {
Console.WriteLine("ERROR: message {0}", e.Message);
return true;
}
我还建议您查看 Microsoft 的SharePoint Server 最佳实践文章,特别是“在 SharePoint Server 中编写高效代码”,其中进一步讨论了正确编写查询。