Questions tagged [keywordquery]

12 questions
4
votes
1 answer

Programmatically generate HTML for HitHighlightedSummary using KeywordQuery in FAST search for SharePoint 2010

I am trying to develop a customized SharePoint 2010 web part for FAST search. I am using Microsoft.Office.Server.Search.Query.KeywordQuery something like this: var FASTquery = new KeywordQuery(proxy) { ResultsProvider =…
recursive
  • 83,943
  • 34
  • 151
  • 241
1
vote
0 answers

Strings returned by KeywordQuery as converted from datetime using arbitrary format

Using KeywordQuery to query for a field that is DateTime, code sample below (on-premises SharePoint 2013 farm): var kq = new KeywordQuery(_site) q.SelectProperties.Add("OurDateTimeField"); SearchExecutor se = new SearchExecutor(); var rt =…
1
vote
0 answers

SharePoint - Is it possible to achieve subqueries (SQL IN) with keywordqueries?

I was wondering if it was possible to achieve subqueries with keywordqueries? Something like this SQL query: SELECT Name FROM Production.Product WHERE ProductSubcategoryID IN (SELECT ProductSubcategoryID FROM Production.ProductSubcategory …
PlaTyPuS
  • 385
  • 3
  • 15
1
vote
1 answer

SharePoint 2010 KeywordQuery Returns Empty Managed Properties

I created some Managed Properties following instructions at http://technet.microsoft.com/en-us/library/ff621097(v=office.14).aspx. I then created a custom SharePoint application page with a KeywordQuery search to find only documents using the…
0
votes
1 answer

SharePoint CSOM KeywordQuery - Field or property "QueryText" does not exist

I am attempting to search files and folders held in SharePoint for a user entered phrase but consistently get the following exception: Microsoft.SharePoint.Client.ServerException HResult=0x80131500 Message=Field or property "QueryText" does not…
phuzi
  • 12,078
  • 3
  • 26
  • 50
0
votes
0 answers

How to set userprofile property filter in SharePoint online using CSOM keyword query

I am running one windows task scheduler job to update all user profile properties to disable "Email notifications" using CSOM , however I am not getting any search results for SPS-EmailOptin. This is integer field, if its set to 0 then all…
0
votes
1 answer

KeywordQuery Searching by URL

I am still new in SharePoint so I would like to ask you about the keywordQuery. I need to send and URL with item ID like an QueryText because I do not know how to get the file with URL. For example: ...Lists/Temp%List/DispForm.aspx?ID=1 So the URL…
EdvinB
  • 1
0
votes
1 answer

SharePoint 2013 KeywordQuery Search SPField

The SharePoint search service works on documents content and it Metadata (properties), I need to retrieve the field name and it content (SPField) which the search are matched on it. What field should I add to the SelectProperties object ? or where I…
Ron
  • 1,748
  • 2
  • 12
  • 11
0
votes
1 answer

KQL KeywordQuery - Unable to display managed properties

I am trying to build a KQL Query using KeywordQuery. I have some managed properties columns that I want to display in the result table but it's not working for me. here is the code: oKeywordQuery = new KeywordQuery(oSite); …
Guid2015
  • 57
  • 11
0
votes
1 answer

Sharepoint Keywordquery search returns less results than default sharepoint search

I have a requirement in which I want to get the search results programmatically. For this I am using KeyWordQuery to search programmatically. But here I am getting less results that default SharePoint search, it is omitting some records from the…
Vinod
  • 49
  • 1
  • 3
  • 8
0
votes
1 answer

SharePoint 2013 - Sorting Search Results not working (KeywordQuery-SortList)

am using KeywordQuery to search and.. the SortList does not affect result, it is always return first 5 results. Any suggestion? The code is bellow... using (KeywordQuery query = new KeywordQuery(site)) { …
Nenad Banovic
  • 311
  • 1
  • 7
0
votes
1 answer

SharePoint 2010 KeywordQuery Managed Property Search

In my test-system there is no problem searching for items within specific sites, using the site: tag. this looks like: myTestSearch site:http://sharepoint.local/testsite/library1 The same webpart does have a problem with this keyword in the…
stromflut
  • 186
  • 1
  • 9