gpt4 book ai didi

c# - 从 SharePoint 下载数据的最佳方式

转载 作者:太空宇宙 更新时间:2023-11-03 16:05:29 27 4
gpt4 key购买 nike

因此,我正在开发一个与 SharePoint 2013 通信的 Windows 8.1 应用程序。

目前我使用以下方式下载数据:

    public async Task<IList<NewsSite>> GetGroups(string vaultResource)
{
_clientContext.Credentials = new NetworkCredential(UserName, PassWord);

SP.Web site = _clientContext.Web;
ListCollection announcementListCollection = site.Lists;
_clientContext.Load(announcementListCollection);

List<NewsItem> NewsItems = new List<NewsItem>();

//load all news items wich are announcement items for all lists in the current site.

_clientContext.Load(announcementListCollection);
_clientContext.ExecuteQuery();



foreach (List sharePointGroup in announcementListCollection)
{
var ctypes = sharePointGroup.ContentTypes;
_clientContext.Load(ctypes);
_clientContext.ExecuteQuery();

if (ctypes.Where(c => c.Name == "Announcement").Count() == 1)
{
CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = "<View><RowLimit>8</RowLimit></View>";

ListItemCollection newsListColl = sharePointGroup.GetItems(camlQuery);

_clientContext.Load(newsListColl,
eachItem => eachItem.Include(item => item.Id, item => item["Title"], item => item["Body"]));
_clientContext.ExecuteQuery();

foreach (ListItem NewsItem in newsListColl)
{
NewsItem newsItem = new NewsItem();
newsItem.Id = NewsItem.Id;
newsItem.Title = (string) NewsItem["Title"];
newsItem.Content = (string) NewsItem["Body"];
newsItem.ListHolder = sharePointGroup.Title;

string tempImageString = GetImageInHTML((string) NewsItem["Body"]);
var rgx1 = new Regex("http");
if (tempImageString != null)
{
var match = rgx1.Match(tempImageString);
if (match.Success)
{
newsItem.Image = Regex.Replace(tempImageString, "&#58;", ":");
}
else
{
string pattern2 = @"http(s)?://(www\.)?\w*((.\w*)|(-*\w*))?(\.\w*)?";
var rgx2 = new Regex(pattern2);
string imgUrl = rgx2.Match(_siteUrl).ToString() + tempImageString;


newsItem.Image = imgUrl;
}
}
if (tempImageString == null)
{
newsItem.Image = null;
}
NewsItems.Add(newsItem);
}
}
}
var newsItemsBySite =
NewsItems.GroupBy(x => x.ListHolder).Select(x => new NewsSite {Title = x.Key, Items = x.ToList()});

return newsItemsBySite.ToList();

}

通过这种方式,应用程序为每个 ListItem 调用 SharePoint 站点 3 次以获取所需的数据。

我试图将所有加载语句放在一个语句中,但没有成功。

有谁知道如何将 3 个语句放在一个语句中,或者有更好更快的方法来检索数据吗?

郑重声明:我使用的是 SharePoint 客户端对象模型。

期待答案!

最佳答案

我认为您需要更改在此处获取数据的基本方法。

鉴于您希望从不确定数量的列表中收集数据,在您毕竟可能在任何列表中的公告中,您应该使用另一个数据访问 API,即搜索。说真的,搜索对您来说会快很多。

要获得站点中的所有公告,您的查询将变得简单明了,您只需向 http://SiteUrl/_api/search/query?querytext=%27ContentTypeId 发出请求: 0x01*%27只需在您的网络浏览器中点击它,即可查看结果的形状。

Tobias ZimmergrenChris O'Brien有关于 REST Search API 的精彩博文。这种方法确实有局限性,即结果仅与上次搜索抓取一样新鲜,但它更快、更高效

关于c# - 从 SharePoint 下载数据的最佳方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19687399/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com