Hi everyone!
I am running the code below:

 textSearch.TextChanged += delegate {
                 if (textSearch.Text.Length > 0) {
                     qry.Keys = textSearch.Text.ToLower ().Split (' ');
                     qry.Limit = 50;
                     lines = qry.Run ();
                     if (lines.Count > 0) {
                       ...
                     }
                 }
             }; 

Is working perfectly, but when textSearch.Text has more than one keyword, 
the result is all the documents that have at least one of the words.
You can make that returns all documents that contain ALL words entered in 
qry.Keys?

Julio

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/43922e0c-f3a2-4607-bfd6-fba6c56f90bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to