我可以創建ListItemCollection的列表嗎?我試圖改善從我的代碼加載時間,因爲我分別加載每個ListItemCollection。ListItemCollection的列表
ListItemCollection items;
foreach (PublishedProject proj in projects)
{
items = list.GetItems(qry);
spClientCtx.Load(items);
spClientCtx.ExecuteQuery();
}
我希望它是這樣的東西。
ListItemCollection items;
List allItems;
foreach (PublishedProject proj in projects)
{
items = list.GetItems(qry);
allItems.Add(items);
}
spClientCtx.Load(allItems);
spClientCtx.ExecuteQuery();
這是可能或有沒有更好的方法來做到這一點,所以我只需要1「ExecuteQuery()」;
哪裏是'內使用proj''foreach' –
並不重要,我刪除大多數的代碼來簡化它 – socramm