SharePoint
一组用于共享和管理内容、知识和应用程序的 Microsoft 产品和技术。
13 个问题
你好
我正在使用 CSOM 在 SharePoint 中进行搜索,缺少一些文档,否则如果直接在 SharePoint 上执行相同的搜索,则会出现此文档。
我已经检查了查询源、爬网属性、语法等......需要帮助。
=======================
KeywordQuery keywordQuery = new KeywordQuery(lContext)
{
QueryText = lsQuery,
SourceId = new Guid("21a5d2a0-e739-48a7-948d-deeb5f705f48"),
StartRow = liStartAt, RowLimit = liRowLimit
};
QueryPropertyValue lValue = new QueryPropertyValue();
lValue.StrVal = "Documentos";
keywordQuery.Properties.SetQueryPropertyValue("SourceName", lValue);
lValue.StrVal = "SPSiteSubscription"; //tenant level
keywordQuery.Properties.SetQueryPropertyValue("SourceLevel", lValue);
=======================
使用与打印屏幕相同的语法,KeyWordSearch 不返回任何内容
Note:此问题总结整理于: Sharepoint Online - CSOM search KeyWordQuery document not appear