any idea how to search and display result?
This is my current code. I´m a newbe in LLBL so any help or idea would be great!
For Each field In user.Fields
selectFilter.AddWithOr(New FieldFullTextSearchPredicate(field, FullTextSearchOperator.Freetext, find))
Next
currentCustomer.User.MaxNumberOfItemsToReturn = 50
GridView1.DataSource = currentCustomer.GetMultiUser(True, selectFilter)
GridView1.DataBind()
if my search phrase are "<name> <company>"
I get two users as result. the first one is the one who match <company> the second one is the one who matches both <name> and <company>. I´d like to have them sorted on best hit score....