Fulltext Search with .NET
Note that the fulltext search is not case sensitive.
Here is an example that searches for terms in all the "blog-post" documents.
Copy
var response = await api.query(
Predicates.At("document.type", "blog-post"),
Predicates.Fulltext("document", terms) // terms is a String
).Submit();
IList<Document> documents = response.getResults();