我按照http://technet.microsoft.com/en-us/library/ff621097(v=office.14).aspx的说明创建了一些托管属性。然后,我创建了一个带有KeywordQuery搜索的自定义SharePoint应用程序页面,以使用以下代码仅查找文档:
using System;
using System.Collections.Generic;
using System.Data;
using Microsoft.Office.Server.Search.Query;
using Microsoft.SharePoint.WebControls;
protected System.Data.DataTable TrySearch(string keywords, Int32 pageSize, Int32 page, out Int32 totalPages)
{
int startRow = (page - 1)*rowLimit;
var kwq = new KeywordQuery(Site);
kwq.QueryText = string.Format("Title:\"{0}\"", keywords);
kwq.ResultTypes = ResultType.RelevantResults;
kwq.RowLimit = pageSize;
kwq.StartRow = startRow;
kwq.TrimDuplicates = true;
kwq.HiddenConstraints = "path:\"*/User Docs*\" AND IsDocument:true";
kwq.KeywordInclusion = KeywordInclusion.AllKeywords;
// Default
kwq.SelectProperties.Add("WorkId");
kwq.SelectProperties.Add("Rank");
kwq.SelectProperties.Add("Title");
kwq.SelectProperties.Add("Path");
kwq.SelectProperties.Add("SiteName");
kwq.SelectProperties.Add("HitHighlightedSummary");
kwq.SelectProperties.Add("HitHighlightedProperties");
kwq.SelectProperties.Add("ContentClass");
kwq.SelectProperties.Add("IsDocument");
// Custom (they come back blank even when set as managed properties)
kwq.SelectProperties.Add("IntroText");
kwq.SelectProperties.Add("Date");
kwq.SelectProperties.Add("ListItemId");
ResultTableCollection rtc = kwq.Execute();
var results = new DataTable();
if (rtc.Count == 0)
{
totalPages = 0;
return results;
}
using (ResultTable relevantResults = rtc[ResultType.RelevantResults])
{
results.Load(relevantResults, LoadOption.OverwriteChanges);
totalPages = (int) Math.Round((double) relevantResults.TotalRows/pageSize);
}
return results;
}
我的问题是,不管我做了什么,我无法为我的托管属性获取值。搜索工作正常。我可以相应地过滤并得到我期望的结果,只是自定义列是空的。我最关心的是ID,但我很想得到我要求的所有自定义属性。
我可能在服务器上错过了某种设置吗?任何帮助表示赞赏。
答案 0 :(得分:0)
我想你现在必须已达到解决方案,但对于那些在同一问题上苦苦挣扎的人来说,解决方案是:
将已抓取的属性映射到现有/新托管属性后,再次抓取。而已。数据将显示所请求的属性。