Tag Archives: KeywordQuery SharePoint

Referenca Handy: Rezultatet Default nga KeywordQuery Kërko

Kur ju kërkoj Execute() metodë në një KeywordQuery, ju mund të krijoni një ResultTable bazuar në ResultType.RelevantResults.  Ky copëza kodi ilustron çfarë dua të them:

ResultsTableCollection ResultTableCollection = myKeywordQuery.Execute();

ResultTable searchResultsTable = resultsTableCollection[ResultType.RelevantResults];

Tabela rezulton do të ketë kolona e mëposhtme të informacionit: 

WorkId
Rank
Titull
Autor
Madhësi
Rrugë
Përshkrim
Shkruaj
SITENAME
CollapsingStatus
HitHighlightedSummary
HitHighlightedProperties
Contentclass
IsDocument
PictureThumbnailURL
ServerRedirectedURL

Unë rrjedh nga një këtë listë SharePoint 2010 mjedis, Enterprise Edition.  Shpresojmë se kjo do të jetë i dobishëm për dikë në të ardhmen.

</fund>

Abonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin

SharePoint 2010 KeywordQuery dhe Pronës HiddenConstraints

I’ve been doing a bit of work with the KeywordQuery object in SharePoint 2010 and making use of the HiddenConstraints pronë.

Unë nuk e kam gjetur ndonjë informacion menjëherë të dobishme në pronën që, kështu që unë mendova se do të shënoj sa më shpejt që unë kam qenë duke e përdorur atë.

Me aq sa unë mund të them, this is an automatic constraint added to the query so that you can sort of park it there and not worry about it.  As such, it’s just another keyword (or set of keywords) and modifiers that you can type in to the UI when you do a keyword search.  Ja një shembull:

keywordQuery.HiddenConstraints = "scope:\"Industry\"";

You can add additional constraints with a space delimiter.

keywordQuery.HiddenConstraints = "scope:\"Industry\" defense";

The above is saying in English, “run a keyword query looking for “defense” and furthermore, use the “Industry” scope.

Here’s another way of looking at it:

image

I’ve been using it to provide a context-dependent automatic scope on a custom web part.  When the user clicks on a tab and clicks a search button, the tab dictates a particular search scope.  It’s working well so far.

</fund>

Abonohen në blogun tim.

Atëherë ejani pas meje në Twitter në http://www.twitter.com/pagalvin