Hello experts,
I want a quick assistance on converting FullTextSqlQuery into regular querytext as its depreciated in SP 2013. Will you please help?
myQuery.QueryText = "SELECT FileName, Path, HitHighlightedSummary FROM SCOPE() WHERE \"scope\" = 'custSite' AND (FREETEXT(defaultproperties, '" + sAny1 + "') "
+ radioSearchOrdinal1.SelectedValue + " FREETEXT(defaultproperties, '" + sAny2 + "')) "
+ radioSearchOrdinal2.SelectedValue + " (FREETEXT(defaultproperties, '" + sAll1 + "') "
+ radioSearchOrdinal3.SelectedValue + " FREETEXT(defaultproperties, '" + sAll2 + "'))";
Also, is there a tool where I can use to convert this sql query into querytext?
Many thanks
Shri