0

我尝试在 Sharepoint 中清除一个非常大的列表。由于 Sharepoints 删除机制缓慢,我决定从该列表中保存一个模板(没有数据),删除该列表,然后从该模板创建一个新列表。代码如下:

public static void TruncateList(SPList list)
{
   SPSecurity.RunWithElevatedPrivileges(delegate()
   {
      using (SPSite site = new SPSite(list.ParentWeb.Site.ID))
      {
         using (SPWeb web = site.OpenWeb())
         {            
               web.AllowUnsafeUpdates = true;
               SPList listCopy = web.Lists[list.ID];
               string title = listCopy.Title;
               string description = listCopy.Description;
               string backupName = string.Format("BACKUP_{0}", title);

               // Delete old Template if exists:
               SPList gallery = web.Lists["List Template Gallery"];
               foreach (SPListItem item in gallery.Items)
               {
                  if (item.Title == backupName)
                  {
                     item.Delete();
                     break;
                  }
               }

               // Save Template:
               listCopy.SaveAsTemplate(backupName, backupName, string.Empty, false);

               // Load Template:
               SPListTemplate template = web.Site.GetCustomListTemplates(web)[backupName];
               template = web.ListTemplates[backupName];

               // Delete List:
               listCopy.Delete();   

               // Add empty List from Template:   [HANGS HERE!]                                                        
               web.Lists.Add(title, description, template);

               web.Update();
               web.AllowUnsafeUpdates = false;
         }
         );
        }
    }
}

保存模板工作正常以及删除需要一段时间的原始列表 (listCopy.Delete())

但是当尝试再次创建该列表(web.Lists.Add)时,服务器卡住了,直到几分钟后它得到一个超时异常。

值得一提的是:这是我的开发者机器。除了我之外,没有人正在访问该网络/列表

4

1 回答 1

0

自己解决:

问题是我使用该列表(“列表”)作为参数。我将其更改为仅将该列表的 ID 发送到该方法并使用

using (SPWeb web = SPContext.Current.Web)

里面。现在它起作用了。

于 2012-08-08T16:45:22.430 回答