Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
i'm trying to use MultipleCharacterWildcard and boost at the same time but i get the following criteria
+displayName:test^5.0
this is my code
sc.Field("displayName", searchTerm.MultipleCharacterWildcard().Value.Boost(5))
how can i use them together? is it possible? thank you.
Eran,
Instead of using the Examine query builder you could do a raw query:
+displayName:test*^5.0
then for your query
SearchProvider.Search(SearchProvider.CreateSearchCriteria().RawQuery(query));
where query is the lucene syntax query string.
Regards
Ismail
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
MultipleCharacterWildcard and Boost at the same time (Examine)
i'm trying to use MultipleCharacterWildcard and boost at the same time but i get the following criteria
this is my code
how can i use them together? is it possible? thank you.
Eran,
Instead of using the Examine query builder you could do a raw query:
then for your query
where query is the lucene syntax query string.
Regards
Ismail
is working on a reply...