受众定位在FullTextSqlQuery中

时间:2010-03-08 14:12:49

标签: sharepoint-2007 full-text-search

我正在尝试在SharePoint网站中搜索文档,但我需要在将结果显示给用户之前将结果应用于结果。

然而,我正在努力(a)在原始查询中检索目标受众设置......

using (SPSite site = new SPSite(SPContext.Current.Site.ID)) {
    using (FullTextSqlQuery fullText = new FullTextSqlQuery(site)) {
        fullText.QueryText = @"select Title, Path, Description, TargetAudience from scope() where ((""scope"" = 'All Sites'))"
            + @" and IsDocument = 1 and freetext(*, '{0}')";
        fullText.QueryText = string.Format(fullText.QueryText, this.documentFilter.AllOfTheseWords);
        fullText.ResultTypes = ResultType.RelevantResults;
        ResultTableCollection resultTableCollection = fullText.Execute();

        allofTheseWords = new DataTable();
        if (resultTableCollection.Exists(ResultType.RelevantResults)) {
            allofTheseWords.Load(resultTableCollection[ResultType.RelevantResults], LoadOption.OverwriteChanges);
        }

    }
}

或(b)从原始查询中检索列表项ID(guid),以便我可以将每个结果绑定到原始列表项(因此使用列表项应用受众定位。

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

我最终找到了一种方法,可以根据全文查询返回的网址检索原始列表项,然后将受众群体定位测试应用于列表项。