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
Is it possible to get all values with a specific fieldtype from Examine ?
Some sort of wildcardsearch.
Ex. Get all terms from Lucene index, with Fieldname "title"
Finally found a solution.
Got inspired by http://our.umbraco.org/forum/developers/api-questions/12168-Examine-Leading-wildcards?p=1
and simple
ISearchCriteria searchCriteria = Searcher.CreateSearchCriteria(); searchCriteria.RawQuery("title:*"); ISearchResults searchResults = Searcher.Search(searchCriteria);
Works like a charm
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Examine Get all terms in specific field
Is it possible to get all values with a specific fieldtype from Examine ?
Some sort of wildcardsearch.
Ex. Get all terms from Lucene index, with Fieldname "title"
Finally found a solution.
Got inspired by http://our.umbraco.org/forum/developers/api-questions/12168-Examine-Leading-wildcards?p=1
and simple
Works like a charm
is working on a reply...